omniauth--omniauth/omniauth.gemspec

23 lines
989 B
Ruby
Raw Normal View History

# coding: utf-8
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|
2014-07-09 17:41:26 +00:00
spec.add_dependency 'hashie', ['>= 1.2', '< 4']
2014-01-16 05:37:55 +00:00
spec.add_dependency 'rack', '~> 1.0'
2013-02-02 16:13:35 +00:00
spec.add_development_dependency 'bundler', '~> 1.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']
2014-01-16 06:22:32 +00:00
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
2013-02-02 16:13:35 +00:00
spec.homepage = 'http://github.com/intridea/omniauth'
spec.licenses = %w(MIT)
2013-02-02 16:13:35 +00:00
spec.name = 'omniauth'
spec.require_paths = %w(lib)
spec.required_rubygems_version = '>= 1.3.5'
2013-02-02 16:13:35 +00:00
spec.summary = spec.description
2014-01-16 06:22:32 +00:00
spec.test_files = spec.files.grep(/^spec\//)
2013-02-02 16:13:35 +00:00
spec.version = OmniAuth::VERSION
end