oa-openid.gemspec in oa-openid-0.2.4 vs oa-openid.gemspec in oa-openid-0.2.5

- old
+ new

@@ -1,20 +1,24 @@ # -*- encoding: utf-8 -*- -require File.expand_path('../../omniauth/lib/omniauth/version', __FILE__) +require File.expand_path('../lib/omniauth/version', __FILE__) Gem::Specification.new do |gem| - gem.add_dependency 'oa-core', Omniauth::VERSION.dup - gem.add_dependency 'rack-openid', '~> 1.2.0' - gem.add_dependency 'ruby-openid-apps-discovery' + gem.add_runtime_dependency 'jruby-openssl', '~> 0.7.3' if RUBY_PLATFORM == 'java' + gem.add_runtime_dependency 'oa-core', OmniAuth::Version::STRING + gem.add_runtime_dependency 'rack-openid', '~> 1.3.1' + gem.add_runtime_dependency 'ruby-openid-apps-discovery', '~> 1.2.0' + gem.add_development_dependency 'maruku', '~> 0.6' gem.add_development_dependency 'rack-test', '~> 0.5' gem.add_development_dependency 'rake', '~> 0.8' gem.add_development_dependency 'rspec', '~> 2.5' + gem.add_development_dependency 'simplecov', '~> 0.4' gem.add_development_dependency 'webmock', '~> 1.6' gem.add_development_dependency 'yard', '~> 0.6' + gem.add_development_dependency 'ZenTest', '~> 4.5' gem.name = 'oa-openid' - gem.version = Omniauth::VERSION.dup - gem.summary = %q{OpenID strategies for OmniAuth.} + gem.version = OmniAuth::Version::STRING gem.description = %q{OpenID strategies for OmniAuth.} + gem.summary = gem.description gem.email = ['michael@intridea.com', 'sferik@gmail.com'] gem.homepage = 'http://github.com/intridea/omniauth' gem.authors = ['Michael Bleigh', 'Erik Michaels-Ober'] gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)} gem.files = `git ls-files`.split("\n")