mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
19 lines
712 B
Ruby
19 lines
712 B
Ruby
version = File.open(File.dirname(__FILE__) + '/../VERSION', 'r').read.strip
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "oa-openid"
|
|
gem.version = version
|
|
gem.summary = %Q{OpenID strategies for OmniAuth.}
|
|
gem.description = %Q{OpenID strategies for OmniAuth.}
|
|
gem.email = "michael@intridea.com"
|
|
gem.homepage = "http://github.com/intridea/omniauth"
|
|
gem.authors = ["Michael Bleigh"]
|
|
|
|
gem.files = Dir.glob("{lib}/**/*") + %w(README.rdoc LICENSE.rdoc CHANGELOG.rdoc)
|
|
|
|
gem.add_dependency 'oa-core', version
|
|
gem.add_dependency 'rack-openid', '~> 1.0.3'
|
|
gem.add_dependency 'ruby-openid-apps-discovery'
|
|
|
|
eval File.read(File.join(File.dirname(__FILE__), '../development_dependencies.rb'))
|
|
end
|