omniauth--omniauth/omniauth.gemspec

25 lines
1.0 KiB
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|
2013-02-22 22:07:42 +00:00
spec.add_dependency 'hashie', ['>= 1.2', '< 3']
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']
2013-02-10 15:36:36 +00:00
spec.cert_chain = %w(certs/sferik.pem)
2013-02-02 16:13:35 +00:00
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
spec.files = `git ls-files`.split($/)
2013-02-02 16:13:35 +00:00
spec.homepage = 'http://github.com/intridea/omniauth'
spec.licenses = ['MIT']
spec.name = 'omniauth'
2012-11-18 04:33:55 +00:00
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.5'
2014-01-16 04:00:46 +00:00
spec.signing_key = File.expand_path('~/.gem/private_key.pem') if $PROGRAM_NAME =~ /gem\z/
2013-02-02 16:13:35 +00:00
spec.summary = spec.description
spec.test_files = spec.files.grep(%r{^spec/})
2013-02-02 16:13:35 +00:00
spec.version = OmniAuth::VERSION
end