omniauth--omniauth/omniauth.gemspec

26 lines
1.1 KiB
Ruby
Raw Normal View History

# coding: utf-8
2017-09-28 17:07:45 +00:00
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/version'
2012-11-18 04:33:55 +00:00
Gem::Specification.new do |spec|
spec.add_dependency 'hashie', ['>= 3.4.6']
2022-04-13 18:32:45 +00:00
spec.add_dependency 'rack', '>= 2.2.3'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_dependency 'rack-protection'
2017-02-11 19:38:00 +00:00
spec.add_development_dependency 'rake', '~> 12.0'
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober', 'Tom Milewski']
spec.description = 'A generalized Rack framework for multiple-provider authentication.'
spec.email = ['michael@intridea.com', 'sferik@gmail.com', 'tmilewski@gmail.com']
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
2016-08-05 21:13:54 +00:00
spec.homepage = 'https://github.com/omniauth/omniauth'
2017-09-28 17:07:45 +00:00
spec.licenses = %w[MIT]
2013-02-02 16:13:35 +00:00
spec.name = 'omniauth'
2017-09-28 17:07:45 +00:00
spec.require_paths = %w[lib]
spec.required_rubygems_version = '>= 1.3.5'
spec.required_ruby_version = '>= 2.2'
2013-02-02 16:13:35 +00:00
spec.summary = spec.description
spec.version = OmniAuth::VERSION
end