2011-08-15 02:43:36 -04:00
# encoding: utf-8
2011-04-28 20:55:10 -04:00
require File . expand_path ( '../lib/omniauth/version' , __FILE__ )
2010-04-05 01:20:34 -04:00
Gem :: Specification . new do | gem |
2011-05-12 21:40:28 -04:00
%w( oa-basic oa-enterprise oa-core oa-more oa-oauth oa-openid ) . each do | subgem |
2011-08-15 02:43:36 -04:00
gem . add_dependency subgem , OmniAuth :: Version :: STRING
2010-05-01 15:07:56 -04:00
end
2011-05-12 21:40:28 -04:00
gem . authors = [ 'Michael Bleigh' , 'Erik Michaels-Ober' ]
2011-08-23 22:18:06 -04:00
gem . description = %q{ OmniAuth is an authentication framework 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. }
2011-04-22 03:52:45 -04:00
gem . email = [ 'michael@intridea.com' , 'sferik@gmail.com' ]
2011-07-22 14:05:32 -04:00
gem . files = Dir . glob ( " lib/**/* " ) + %w( README.md LICENSE.md )
2011-05-12 21:40:28 -04:00
gem . homepage = 'http://github.com/intridea/omniauth'
gem . name = 'omniauth'
2011-04-22 03:52:45 -04:00
gem . require_paths = [ 'lib' ]
2011-05-12 21:40:28 -04:00
gem . required_rubygems_version = Gem :: Requirement . new ( '>= 1.3.6' )
2011-07-22 14:05:32 -04:00
gem . summary = %q{ Rack middleware for standardized multi-provider authentication }
2011-05-12 21:40:28 -04:00
gem . version = OmniAuth :: Version :: STRING
2011-01-12 16:59:34 -05:00
end