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-02-22 17:07:42 -05:00
|
|
|
spec.add_dependency 'hashie', ['>= 1.2', '< 3']
|
2014-01-16 00:37:55 -05:00
|
|
|
spec.add_dependency 'rack', '~> 1.0'
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.add_development_dependency 'bundler', '~> 1.0'
|
2013-02-03 05:20:05 -05:00
|
|
|
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
|
2014-03-15 15:43:19 -04:00
|
|
|
spec.description = %q(A generalized Rack framework for multiple-provider authentication.)
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
|
2014-01-16 01:22:32 -05:00
|
|
|
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.homepage = 'http://github.com/intridea/omniauth'
|
2014-03-15 15:43:19 -04:00
|
|
|
spec.licenses = %w(MIT)
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.name = 'omniauth'
|
2014-03-15 15:43:19 -04:00
|
|
|
spec.require_paths = %w(lib)
|
2013-05-06 08:27:53 -04:00
|
|
|
spec.required_rubygems_version = '>= 1.3.5'
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.summary = spec.description
|
2014-01-16 01:22:32 -05:00
|
|
|
spec.test_files = spec.files.grep(/^spec\//)
|
2013-02-02 11:13:35 -05:00
|
|
|
spec.version = OmniAuth::VERSION
|
2010-06-09 13:48:55 -04:00
|
|
|
end
|