mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
Add bundler development dependency
This commit is contained in:
parent
68dd4699f0
commit
1c69882ba5
1 changed files with 14 additions and 15 deletions
|
@ -2,22 +2,21 @@
|
|||
require File.expand_path('../lib/omniauth/version', __FILE__)
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = 'omniauth'
|
||||
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
|
||||
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
|
||||
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
|
||||
|
||||
spec.add_dependency 'rack'
|
||||
spec.add_dependency 'hashie', '~> 1.2'
|
||||
|
||||
spec.version = OmniAuth::VERSION
|
||||
spec.files = %w(.yardopts LICENSE.md README.md Rakefile omniauth.gemspec)
|
||||
spec.files += Dir.glob("lib/**/*.rb")
|
||||
spec.files += Dir.glob("spec/**/*")
|
||||
spec.homepage = 'http://github.com/intridea/omniauth'
|
||||
spec.licenses = ['MIT']
|
||||
spec.add_dependency 'rack'
|
||||
spec.add_development_dependency 'bundler', '~> 1.0'
|
||||
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
|
||||
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
|
||||
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
|
||||
spec.files = %w(.yardopts LICENSE.md README.md Rakefile omniauth.gemspec)
|
||||
spec.files += Dir.glob("lib/**/*.rb")
|
||||
spec.files += Dir.glob("spec/**/*")
|
||||
spec.homepage = 'http://github.com/intridea/omniauth'
|
||||
spec.licenses = ['MIT']
|
||||
spec.name = 'omniauth'
|
||||
spec.require_paths = ['lib']
|
||||
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
|
||||
spec.summary = spec.description
|
||||
spec.test_files = Dir.glob("spec/**/*")
|
||||
spec.summary = spec.description
|
||||
spec.test_files = Dir.glob("spec/**/*")
|
||||
spec.version = OmniAuth::VERSION
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue