2013-02-02 12:14:44 -05:00
|
|
|
# coding: utf-8
|
2017-09-28 13:07:45 -04:00
|
|
|
|
2013-02-02 12:14:44 -05:00
|
|
|
lib = File.expand_path('../lib', __FILE__)
|
|
|
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
|
require 'omniauth/version'
|
2010-05-01 15:07:56 -04:00
|
|
|
|
2012-11-17 23:33:55 -05:00
|
|
|
Gem::Specification.new do |spec|
|
2019-11-16 21:25:46 -05:00
|
|
|
spec.add_dependency 'hashie', ['>= 3.4.6']
|
2017-02-11 11:57:24 -05:00
|
|
|
spec.add_dependency 'rack', ['>= 1.6.2', '< 3']
|
2020-12-04 14:40:33 -05:00
|
|
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
2020-12-02 22:16:51 -05:00
|
|
|
spec.add_dependency 'rack-protection'
|
2017-02-11 14:38:00 -05:00
|
|
|
spec.add_development_dependency 'rake', '~> 12.0'
|
2014-05-30 14:07:21 -04:00
|
|
|
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober', 'Tom Milewski']
|
2014-07-09 04:28:59 -04:00
|
|
|
spec.description = 'A generalized Rack framework for multiple-provider authentication.'
|
2014-05-30 14:07:21 -04:00
|
|
|
spec.email = ['michael@intridea.com', 'sferik@gmail.com', 'tmilewski@gmail.com']
|
2014-10-08 20:23:16 -04:00
|
|
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
|
2016-08-05 17:13:54 -04:00
|
|
|
spec.homepage = 'https://github.com/omniauth/omniauth'
|
2017-09-28 13:07:45 -04:00
|
|
|
spec.licenses = %w[MIT]
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.name = 'omniauth'
|
2017-09-28 13:07:45 -04:00
|
|
|
spec.require_paths = %w[lib]
|
2013-05-06 08:27:53 -04:00
|
|
|
spec.required_rubygems_version = '>= 1.3.5'
|
2018-12-14 11:29:36 -05:00
|
|
|
spec.required_ruby_version = '>= 2.2'
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.summary = spec.description
|
|
|
|
spec.version = OmniAuth::VERSION
|
2010-06-09 13:48:55 -04:00
|
|
|
end
|