2013-02-02 12:14:44 -05:00
|
|
|
# coding: utf-8
|
|
|
|
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|
|
2013-01-25 13:24:52 -05:00
|
|
|
spec.add_dependency 'hashie', '~> 1.2'
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.add_dependency 'rack'
|
|
|
|
spec.add_development_dependency 'bundler', '~> 1.0'
|
|
|
|
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
|
|
|
|
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
|
|
|
|
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
|
|
|
|
spec.files = %w(.yardopts LICENSE.md README.md Rakefile omniauth.gemspec)
|
|
|
|
spec.files += Dir.glob("lib/**/*.rb")
|
|
|
|
spec.files += Dir.glob("spec/**/*")
|
|
|
|
spec.homepage = 'http://github.com/intridea/omniauth'
|
|
|
|
spec.licenses = ['MIT']
|
|
|
|
spec.name = 'omniauth'
|
2012-11-17 23:33:55 -05:00
|
|
|
spec.require_paths = ['lib']
|
|
|
|
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.summary = spec.description
|
|
|
|
spec.test_files = Dir.glob("spec/**/*")
|
|
|
|
spec.version = OmniAuth::VERSION
|
2010-06-09 13:48:55 -04:00
|
|
|
end
|