forked from omniauth/omniauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniauth.gemspec
More file actions
18 lines (17 loc) · 987 Bytes
/
omniauth.gemspec
File metadata and controls
18 lines (17 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# encoding: utf-8
require File.expand_path('../lib/omniauth/version', __FILE__)
Gem::Specification.new do |gem|
%w(oa-basic oa-enterprise oa-core oa-more oa-oauth oa-openid).each do |subgem|
gem.add_dependency subgem, OmniAuth::Version::STRING
end
gem.authors = ['Michael Bleigh', 'Erik Michaels-Ober']
gem.description = %q{OmniAuth is an authentication framework that that separates the concept of authentiation from the concept of identity, providing simple hooks for any application to have one or multiple authentication providers for a user.}
gem.email = ['michael@intridea.com', 'sferik@gmail.com']
gem.files = Dir.glob("lib/**/*") + %w(README.md LICENSE.md)
gem.homepage = 'http://github.com/intridea/omniauth'
gem.name = 'omniauth'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Rack middleware for standardized multi-provider authentication}
gem.version = OmniAuth::Version::STRING
end