forked from rails/open_id_authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen_id_authentication.gemspec
32 lines (27 loc) · 1.14 KB
/
open_id_authentication.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'open_id_authentication/version'
Gem::Specification.new do |s|
s.name = %q{open_id_authentication}
s.version = OpenIdAuthentication::VERSION
s.summary = %q{open_id_authentication provides a thin wrapper around the excellent rack-openid
gem.}
s.description = %q{open_id_authentication provides a thin wrapper around the excellent rack-openid
gem.}
s.files = Dir['[A-Z]*', 'lib/**/*.rb']
s.require_path = 'lib'
s.authors = ["Patrick Robertson"]
s.email = %q{[email protected]}
s.homepage = "https://github.com/Velir/open_id_authentication"
s.platform = Gem::Platform::RUBY
s.rubygems_version = %q{1.2.0}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rack-openid>, ["~> 1.3"])
else
s.add_dependency(%q<rack-openid>, ["~> 1.3"])
end
else
s.add_dependency(%q<rack-openid>, ["~> 1.3"])
end
end