Skip to content

Commit

Permalink
gemspec changes to resolve 'gem build' warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kbeckman committed Jul 23, 2014
1 parent 284e9b1 commit dfe79bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions omniauth-wsfed.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/kbeckman/omniauth-wsfed'
gem.license = 'MIT'

gem.add_runtime_dependency 'omniauth', '~> 1.2.2'
gem.add_runtime_dependency 'xmlcanonicalizer', '~> 0.1.2'
gem.add_runtime_dependency 'omniauth', '~> 1.2', '>= 1.2.2'
gem.add_runtime_dependency 'xmlcanonicalizer', '~> 0.1', '>= 0.1.2'

gem.add_development_dependency 'rspec', '>= 2.12.0'
gem.add_development_dependency 'rake', '>= 10.1.0'
gem.add_development_dependency 'rack-test', '>= 0.6.2'
gem.add_development_dependency 'rspec', '~> 2.12', '>= 2.12.0'
gem.add_development_dependency 'rake', '~> 10.1', '>= 10.1.0'
gem.add_development_dependency 'rack-test', '~> 0.6', '>= 0.6.2'

gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
Expand Down

0 comments on commit dfe79bb

Please sign in to comment.