added oa-corporate gem to omniauth's Gemfile and gemspec

This commit is contained in:
James A. Rosen 2010-07-04 15:44:57 -04:00
parent b98106af27
commit d681de036b
2 changed files with 6 additions and 5 deletions

View File

@ -1,9 +1,10 @@
source "http://rubygems.org"
gem 'oa-core', :path => File.expand_path('../../oa-core/', __FILE__)
gem 'oa-basic', :path => File.expand_path('../../oa-basic/', __FILE__)
gem 'oa-oauth', :path => File.expand_path('../../oa-oauth/', __FILE__)
gem 'oa-openid', :path => File.expand_path('../../oa-openid/', __FILE__)
gem 'oa-core', :path => File.expand_path('../../oa-core/', __FILE__)
gem 'oa-basic', :path => File.expand_path('../../oa-basic/', __FILE__)
gem 'oa-corporate', :path => File.expand_path('../../oa-openid/', __FILE__)
gem 'oa-oauth', :path => File.expand_path('../../oa-oauth/', __FILE__)
gem 'oa-openid', :path => File.expand_path('../../oa-openid/', __FILE__)
# Will automatically pull in this gem and all its
# dependencies specified in the gemspec

View File

@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
gem.files = Dir.glob("{lib}/**/*") + %w(README.rdoc LICENSE.rdoc CHANGELOG.rdoc)
%w(oa-core oa-oauth oa-basic oa-openid).each do |subgem|
%w(oa-core oa-oauth oa-basic oa-openid oa-corporate).each do |subgem|
gem.add_dependency subgem, version
end