forked from entp/ruby-openid
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Gemfile, Rakefile, version, move/update the gemspec
- Loading branch information
Mike Mell
committed
Nov 3, 2011
1 parent
7ea23fb
commit d0638ce
Showing
9 changed files
with
79 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "http://rubygems.org" | ||
|
||
gemspec | ||
|
||
gem "test-unit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require 'rake' | ||
require 'rake/testtask' | ||
require "bundler/gem_tasks" | ||
|
||
# see http://rake.rubyforge.org/classes/Rake/TestTask.html | ||
# Run tests with: | ||
# $ cd ruby-openid | ||
# $ rake test | ||
# | ||
desc 'Run the ruby-openid tests.' | ||
Rake::TestTask.new(:test) do |t| | ||
t.libs += ["lib", "test"] | ||
t.test_files = FileList['test/test_*.rb'] | ||
t.verbose = true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
require 'openid/store/interface' | ||
require 'openid/store/filesystem' | ||
require 'openid/store/memcache' | ||
require 'openid/store/memory' | ||
require 'openid/store/nonce' | ||
|
||
module OpenID | ||
module Store | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module OpenID | ||
VERSION = "2.1.8" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require 'openid/yadis/accept' | ||
require 'openid/yadis/constants' | ||
require 'openid/yadis/discovery' | ||
require 'openid/yadis/filters' | ||
require 'openid/yadis/htmltokenizer' | ||
require 'openid/yadis/parsehtml' | ||
require 'openid/yadis/services' | ||
require 'openid/yadis/xrds' | ||
require 'openid/yadis/xri' | ||
require 'openid/yadis/xrires' | ||
|
||
module OpenID | ||
module Yadis | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
require "openid/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "ruby-openid" | ||
s.version = OpenID::VERSION | ||
s.authors = ["JanRain, Inc", "Mike Mell"] | ||
s.email = ["[email protected]", "[email protected]"] | ||
s.homepage = 'https://github.com/mmell/ruby-openid' | ||
s.summary = 'A library for consuming and serving OpenID identities.' | ||
s.description = %q{TODO: Write a gem description} | ||
|
||
s.rubyforge_project = "ruby-openid" | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
|
||
# specify any dependencies here; for example: | ||
# s.add_development_dependency "rspec" | ||
# s.add_runtime_dependency "rest-client" | ||
end |