forked from omniauth/omniauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth.gemspec
22 lines (21 loc) · 1 KB
/
omniauth.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/version'
Gem::Specification.new do |spec|
spec.add_dependency 'hashie', ['>= 1.2', '< 4']
spec.add_dependency 'rack', ['>= 1.0', '< 3']
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_development_dependency 'rake', '>= 10.5'
spec.authors = ['Michael Bleigh', 'Erik Michaels-Ober', 'Tom Milewski']
spec.description = 'A generalized Rack framework for multiple-provider authentication.'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
spec.homepage = 'https://github.com/omniauth/omniauth'
spec.licenses = %w(MIT)
spec.name = 'omniauth'
spec.require_paths = %w(lib)
spec.required_rubygems_version = '>= 1.3.5'
spec.summary = spec.description
spec.version = OmniAuth::VERSION
end