2011-08-15 02:43:36 -04:00
|
|
|
# encoding: utf-8
|
2011-04-28 20:55:10 -04:00
|
|
|
require File.expand_path('../lib/omniauth/version', __FILE__)
|
2010-05-01 15:07:56 -04:00
|
|
|
|
2012-11-17 23:33:55 -05:00
|
|
|
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']
|
2011-09-03 20:31:52 -04:00
|
|
|
|
2012-11-17 23:33:55 -05:00
|
|
|
spec.add_runtime_dependency 'rack'
|
|
|
|
spec.add_runtime_dependency 'hashie', '~> 1.2'
|
2011-05-17 10:53:32 -04:00
|
|
|
|
2012-11-17 23:33:55 -05:00
|
|
|
spec.add_development_dependency 'maruku'
|
|
|
|
spec.add_development_dependency 'simplecov'
|
|
|
|
spec.add_development_dependency 'rack-test'
|
|
|
|
spec.add_development_dependency 'rake'
|
|
|
|
spec.add_development_dependency 'rspec', '~> 2.8'
|
|
|
|
spec.add_development_dependency 'yard'
|
2011-09-03 20:31:52 -04:00
|
|
|
|
2012-11-17 23:33:55 -05:00
|
|
|
spec.version = OmniAuth::VERSION
|
|
|
|
spec.files = `git ls-files`.split("\n")
|
|
|
|
spec.homepage = 'http://github.com/intridea/omniauth'
|
|
|
|
spec.licenses = ['MIT']
|
|
|
|
spec.require_paths = ['lib']
|
|
|
|
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
|
|
|
|
spec.summary = spec.description
|
|
|
|
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
2010-06-09 13:48:55 -04:00
|
|
|
end
|