From 549b0c71e22b77b9f6a2a42fec594b8fb2629649 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Tue, 10 Aug 2010 08:35:06 -0500 Subject: [PATCH 1/2] Updating GApps and OpenID strategies a bit. --- oa-openid/lib/omniauth/strategies/google_apps.rb | 7 +++---- oa-openid/lib/omniauth/strategies/open_id.rb | 6 ++++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/oa-openid/lib/omniauth/strategies/google_apps.rb b/oa-openid/lib/omniauth/strategies/google_apps.rb index 40181da..fb7be1d 100644 --- a/oa-openid/lib/omniauth/strategies/google_apps.rb +++ b/oa-openid/lib/omniauth/strategies/google_apps.rb @@ -3,14 +3,13 @@ require 'omniauth/openid' module OmniAuth module Strategies class GoogleApps < OmniAuth::Strategies::OpenID - def initialize(app, domain, store = nil, options = {}) - @domain = domain - options[:name] ||= 'apps' + def initialize(app, store = nil, options = {}) + options[:name] ||= 'google_apps' super(app, store, options) end def identifier - @domain + options[:domain] || request['domain'] end end end diff --git a/oa-openid/lib/omniauth/strategies/open_id.rb b/oa-openid/lib/omniauth/strategies/open_id.rb index 6ed9bd1..2a8ece2 100644 --- a/oa-openid/lib/omniauth/strategies/open_id.rb +++ b/oa-openid/lib/omniauth/strategies/open_id.rb @@ -7,6 +7,8 @@ module OmniAuth class OpenID include OmniAuth::Strategy + attr_accessor :options + # Should be 'openid_url' # @see http://github.com/intridea/omniauth/issues/issue/13 IDENTIFIER_URL_PARAMETER = 'identifier' @@ -26,8 +28,8 @@ module OmniAuth def initialize(app, store = nil, options = {}) super(app, options[:name] || :open_id) @options = options - @options[:required] ||= [AX[:email], AX[:name], 'email', 'fullname'] - @options[:optional] ||= [AX[:first_name], AX[:last_name], AX[:nickname], AX[:city], AX[:state], AX[:website], AX[:image], 'postcode', 'nickname'] + @options[:required] ||= [AX[:email], AX[:first_name], AZ[:last_name], 'email', 'fullname'] + @options[:optional] ||= [AX[:nickname], AX[:city], AX[:state], AX[:website], AX[:image], 'postcode', 'nickname'] @store = store end From 0bfb9961fc97c327a18ceac97713217fe6c7137a Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Tue, 10 Aug 2010 15:04:19 -0500 Subject: [PATCH 2/2] Renamed corporate to enterprise. --- Rakefile | 2 +- development_dependencies.rb | 4 +- oa-basic/Gemfile.lock | 49 +++++++++ oa-basic/oa-basic.gemspec | 2 +- oa-core/Gemfile.lock | 34 ++++++ .../CHANGELOG.rdoc | 0 {oa-corporate => oa-enterprise}/Gemfile | 2 +- oa-enterprise/Gemfile.lock | 43 ++++++++ {oa-corporate => oa-enterprise}/LICENSE.rdoc | 0 {oa-corporate => oa-enterprise}/README.rdoc | 10 +- {oa-corporate => oa-enterprise}/Rakefile | 2 +- {oa-corporate => oa-enterprise}/VERSION | 0 .../lib/omniauth/enterprise.rb | 0 .../lib/omniauth/strategies/cas.rb | 2 +- .../omniauth/strategies/cas/configuration.rb | 0 .../cas/service_ticket_validator.rb | 0 .../oa-enterprise.gemspec | 7 +- .../spec/fixtures/cas_failure.xml | 0 .../spec/fixtures/cas_success.xml | 0 .../spec/omniauth/strategies/cas_spec.rb | 0 .../spec/spec_helper.rb | 2 +- oa-oauth/Gemfile.lock | 54 ++++++++++ oa-openid/Gemfile.lock | 50 +++++++++ oa-openid/oa-openid.gemspec | 2 +- omniauth/Gemfile | 2 +- omniauth/Gemfile.lock | 101 ++++++++++++++++++ omniauth/omniauth.gemspec | 2 +- 27 files changed, 350 insertions(+), 20 deletions(-) create mode 100644 oa-basic/Gemfile.lock create mode 100644 oa-core/Gemfile.lock rename {oa-corporate => oa-enterprise}/CHANGELOG.rdoc (100%) rename {oa-corporate => oa-enterprise}/Gemfile (81%) create mode 100644 oa-enterprise/Gemfile.lock rename {oa-corporate => oa-enterprise}/LICENSE.rdoc (100%) rename {oa-corporate => oa-enterprise}/README.rdoc (83%) rename {oa-corporate => oa-enterprise}/Rakefile (89%) rename {oa-corporate => oa-enterprise}/VERSION (100%) rename oa-corporate/lib/omniauth/corporate.rb => oa-enterprise/lib/omniauth/enterprise.rb (100%) rename {oa-corporate => oa-enterprise}/lib/omniauth/strategies/cas.rb (97%) rename {oa-corporate => oa-enterprise}/lib/omniauth/strategies/cas/configuration.rb (100%) rename {oa-corporate => oa-enterprise}/lib/omniauth/strategies/cas/service_ticket_validator.rb (100%) rename oa-corporate/oa-corporate.gemspec => oa-enterprise/oa-enterprise.gemspec (74%) rename {oa-corporate => oa-enterprise}/spec/fixtures/cas_failure.xml (100%) rename {oa-corporate => oa-enterprise}/spec/fixtures/cas_success.xml (100%) rename {oa-corporate => oa-enterprise}/spec/omniauth/strategies/cas_spec.rb (100%) rename {oa-corporate => oa-enterprise}/spec/spec_helper.rb (92%) create mode 100644 oa-oauth/Gemfile.lock create mode 100644 oa-openid/Gemfile.lock create mode 100644 omniauth/Gemfile.lock diff --git a/Rakefile b/Rakefile index 8d2bfeb..4a43d12 100644 --- a/Rakefile +++ b/Rakefile @@ -4,7 +4,7 @@ require 'term/ansicolor' include Term::ANSIColor -OMNIAUTH_GEMS = %w(oa-basic oa-core oa-oauth oa-openid oa-corporate omniauth) +OMNIAUTH_GEMS = %w(oa-basic oa-core oa-oauth oa-openid oa-enterprise omniauth) def each_gem(action, &block) OMNIAUTH_GEMS.each_with_index do |dir, i| diff --git a/development_dependencies.rb b/development_dependencies.rb index a704712..d8ea54c 100644 --- a/development_dependencies.rb +++ b/development_dependencies.rb @@ -8,7 +8,7 @@ if Object.const_defined?(:Bundler) && Bundler.const_defined?(:Dsl) && self.kind_ gem 'rake' gem 'mg', '~> 0.0.8' gem 'rspec', '~> 1.3.0' - gem 'webmock', '~> 1.2.2' + gem 'webmock', '~> 1.3.3' gem 'rack-test', '~> 0.5.4' gem 'json', '~> 1.4.3' # multi_json implementation end @@ -16,7 +16,7 @@ else #gemspec gem.add_development_dependency 'rake' gem.add_development_dependency 'mg', '~> 0.0.8' gem.add_development_dependency 'rspec', '~> 1.3.0' - gem.add_development_dependency 'webmock', '~> 1.2.2' + gem.add_development_dependency 'webmock', '~> 1.3.3' gem.add_development_dependency 'rack-test', '~> 0.5.4' gem.add_development_dependency 'json', '~> 1.4.3' # multi_json implementation end diff --git a/oa-basic/Gemfile.lock b/oa-basic/Gemfile.lock new file mode 100644 index 0000000..ef8d3a3 --- /dev/null +++ b/oa-basic/Gemfile.lock @@ -0,0 +1,49 @@ +PATH + remote: . + specs: + oa-basic (0.0.3) + multi_json (~> 0.0.2) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + rest-client (~> 1.6.0) + +PATH + remote: /Users/mbleigh/gems/omniauth/oa-core + specs: + oa-core (0.0.3) + rack (~> 1.1) + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + json (1.4.3) + mg (0.0.8) + rake + mime-types (1.16) + multi_json (0.0.4) + nokogiri (1.4.3.1) + rack (1.2.1) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rest-client (1.6.0) + mime-types (>= 1.16) + rspec (1.3.0) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-basic! + oa-core! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + webmock (~> 1.3.3) diff --git a/oa-basic/oa-basic.gemspec b/oa-basic/oa-basic.gemspec index 8592a88..16c7dc2 100644 --- a/oa-basic/oa-basic.gemspec +++ b/oa-basic/oa-basic.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |gem| gem.files = Dir.glob("{lib}/**/*") + %w(README.rdoc LICENSE.rdoc CHANGELOG.rdoc) gem.add_dependency 'oa-core', version - gem.add_dependency 'rest-client', '~> 1.5.1' + gem.add_dependency 'rest-client', '~> 1.6.0' gem.add_dependency 'multi_json', '~> 0.0.2' gem.add_dependency 'nokogiri', '~> 1.4.2' diff --git a/oa-core/Gemfile.lock b/oa-core/Gemfile.lock new file mode 100644 index 0000000..af46fea --- /dev/null +++ b/oa-core/Gemfile.lock @@ -0,0 +1,34 @@ +PATH + remote: . + specs: + oa-core (0.0.3) + rack (~> 1.1) + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + json (1.4.3) + mg (0.0.8) + rake + rack (1.2.1) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rspec (1.3.0) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-core! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + webmock (~> 1.3.3) diff --git a/oa-corporate/CHANGELOG.rdoc b/oa-enterprise/CHANGELOG.rdoc similarity index 100% rename from oa-corporate/CHANGELOG.rdoc rename to oa-enterprise/CHANGELOG.rdoc diff --git a/oa-corporate/Gemfile b/oa-enterprise/Gemfile similarity index 81% rename from oa-corporate/Gemfile rename to oa-enterprise/Gemfile index 0370166..25446f6 100644 --- a/oa-corporate/Gemfile +++ b/oa-enterprise/Gemfile @@ -4,6 +4,6 @@ gem 'oa-core', :path => File.expand_path('../../oa-core/', __FILE__) # Will automatically pull in this gem and all its # dependencies specified in the gemspec -gem 'oa-corporate', :path => File.expand_path("..", __FILE__) +gem 'oa-enterprise', :path => File.expand_path("..", __FILE__) eval File.read(File.join(File.dirname(__FILE__), '../development_dependencies.rb')) diff --git a/oa-enterprise/Gemfile.lock b/oa-enterprise/Gemfile.lock new file mode 100644 index 0000000..6bb84ab --- /dev/null +++ b/oa-enterprise/Gemfile.lock @@ -0,0 +1,43 @@ +PATH + remote: /Users/mbleigh/gems/omniauth/oa-core + specs: + oa-core (0.0.3) + rack (~> 1.1) + +PATH + remote: . + specs: + oa-enterprise (0.0.3) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + json (1.4.3) + mg (0.0.8) + rake + nokogiri (1.4.3.1) + rack (1.1.0) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rspec (1.3.0) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-core! + oa-enterprise! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + webmock (~> 1.3.3) diff --git a/oa-corporate/LICENSE.rdoc b/oa-enterprise/LICENSE.rdoc similarity index 100% rename from oa-corporate/LICENSE.rdoc rename to oa-enterprise/LICENSE.rdoc diff --git a/oa-corporate/README.rdoc b/oa-enterprise/README.rdoc similarity index 83% rename from oa-corporate/README.rdoc rename to oa-enterprise/README.rdoc index 73cbee1..c7b03dc 100644 --- a/oa-corporate/README.rdoc +++ b/oa-enterprise/README.rdoc @@ -1,12 +1,12 @@ -= OmniAuth::Corporate += OmniAuth::Enterprise OmniAuth strategies for use in your intranet. == Installation -To get just corporate functionality: +To get just enterprise functionality: - gem install oa-corporate + gem install oa-enterprise For the full auth suite: @@ -16,7 +16,7 @@ For the full auth suite: Use the strategy as a middleware in your application: - require 'omniauth/corporate' + require 'omniauth/enterprise' use OmniAuth::Strategies::CAS, :server => 'http://cas.mycompany.com/cas' @@ -28,7 +28,7 @@ See OmniAuth::Strategies::CAS::Configuration for more configuration options. If CAS is one of several authentication strategies, use the OmniAuth Builder: - require 'omniauth/corporate' + require 'omniauth/enterprise' require 'omniauth/oauth' # for Campfire require 'openid/store/filesystem' diff --git a/oa-corporate/Rakefile b/oa-enterprise/Rakefile similarity index 89% rename from oa-corporate/Rakefile rename to oa-enterprise/Rakefile index 2213eb3..bfee211 100644 --- a/oa-corporate/Rakefile +++ b/oa-enterprise/Rakefile @@ -4,7 +4,7 @@ Bundler.setup require 'rake' require 'mg' -MG.new('oa-corporate.gemspec') +MG.new('oa-enterprise.gemspec') require 'spec/rake/spectask' Spec::Rake::SpecTask.new(:spec) do |spec| diff --git a/oa-corporate/VERSION b/oa-enterprise/VERSION similarity index 100% rename from oa-corporate/VERSION rename to oa-enterprise/VERSION diff --git a/oa-corporate/lib/omniauth/corporate.rb b/oa-enterprise/lib/omniauth/enterprise.rb similarity index 100% rename from oa-corporate/lib/omniauth/corporate.rb rename to oa-enterprise/lib/omniauth/enterprise.rb diff --git a/oa-corporate/lib/omniauth/strategies/cas.rb b/oa-enterprise/lib/omniauth/strategies/cas.rb similarity index 97% rename from oa-corporate/lib/omniauth/strategies/cas.rb rename to oa-enterprise/lib/omniauth/strategies/cas.rb index 3e78d41..e643182 100644 --- a/oa-corporate/lib/omniauth/strategies/cas.rb +++ b/oa-enterprise/lib/omniauth/strategies/cas.rb @@ -1,4 +1,4 @@ -require 'omniauth/corporate' +require 'omniauth/enterprise' module OmniAuth module Strategies diff --git a/oa-corporate/lib/omniauth/strategies/cas/configuration.rb b/oa-enterprise/lib/omniauth/strategies/cas/configuration.rb similarity index 100% rename from oa-corporate/lib/omniauth/strategies/cas/configuration.rb rename to oa-enterprise/lib/omniauth/strategies/cas/configuration.rb diff --git a/oa-corporate/lib/omniauth/strategies/cas/service_ticket_validator.rb b/oa-enterprise/lib/omniauth/strategies/cas/service_ticket_validator.rb similarity index 100% rename from oa-corporate/lib/omniauth/strategies/cas/service_ticket_validator.rb rename to oa-enterprise/lib/omniauth/strategies/cas/service_ticket_validator.rb diff --git a/oa-corporate/oa-corporate.gemspec b/oa-enterprise/oa-enterprise.gemspec similarity index 74% rename from oa-corporate/oa-corporate.gemspec rename to oa-enterprise/oa-enterprise.gemspec index 81135e9..dd98825 100644 --- a/oa-corporate/oa-corporate.gemspec +++ b/oa-enterprise/oa-enterprise.gemspec @@ -3,10 +3,10 @@ require 'rubygems' version = File.open(File.dirname(__FILE__) + '/../VERSION', 'r').read.strip Gem::Specification.new do |gem| - gem.name = "oa-corporate" + gem.name = "oa-enterprise" gem.version = version - gem.summary = %Q{Corporate strategies for OmniAuth.} - gem.description = %Q{Corporate strategies for OmniAuth.} + gem.summary = %Q{Enterprise strategies for OmniAuth.} + gem.description = %Q{Enterprise strategies for OmniAuth.} gem.email = "james.a.rosen@gmail.com" gem.homepage = "http://github.com/intridea/omniauth" gem.authors = ["James A. Rosen"] @@ -14,7 +14,6 @@ Gem::Specification.new do |gem| gem.files = Dir.glob("{lib}/**/*") + %w(README.rdoc LICENSE.rdoc CHANGELOG.rdoc) gem.add_dependency 'oa-core', version - gem.add_dependency 'rack', '~> 1.1.0' gem.add_dependency 'nokogiri', '~> 1.4.2' eval File.read(File.join(File.dirname(__FILE__), '../development_dependencies.rb')) diff --git a/oa-corporate/spec/fixtures/cas_failure.xml b/oa-enterprise/spec/fixtures/cas_failure.xml similarity index 100% rename from oa-corporate/spec/fixtures/cas_failure.xml rename to oa-enterprise/spec/fixtures/cas_failure.xml diff --git a/oa-corporate/spec/fixtures/cas_success.xml b/oa-enterprise/spec/fixtures/cas_success.xml similarity index 100% rename from oa-corporate/spec/fixtures/cas_success.xml rename to oa-enterprise/spec/fixtures/cas_success.xml diff --git a/oa-corporate/spec/omniauth/strategies/cas_spec.rb b/oa-enterprise/spec/omniauth/strategies/cas_spec.rb similarity index 100% rename from oa-corporate/spec/omniauth/strategies/cas_spec.rb rename to oa-enterprise/spec/omniauth/strategies/cas_spec.rb diff --git a/oa-corporate/spec/spec_helper.rb b/oa-enterprise/spec/spec_helper.rb similarity index 92% rename from oa-corporate/spec/spec_helper.rb rename to oa-enterprise/spec/spec_helper.rb index 32b587a..65eca1f 100644 --- a/oa-corporate/spec/spec_helper.rb +++ b/oa-enterprise/spec/spec_helper.rb @@ -7,7 +7,7 @@ require 'webmock/rspec' require 'rack/test' require 'omniauth/core' require 'omniauth/test' -require 'omniauth/corporate' +require 'omniauth/enterprise' Spec::Runner.configure do |config| config.include WebMock diff --git a/oa-oauth/Gemfile.lock b/oa-oauth/Gemfile.lock new file mode 100644 index 0000000..aad0f01 --- /dev/null +++ b/oa-oauth/Gemfile.lock @@ -0,0 +1,54 @@ +PATH + remote: /Users/mbleigh/gems/omniauth/oa-core + specs: + oa-core (0.0.3) + rack (~> 1.1) + +PATH + remote: . + specs: + oa-oauth (0.0.3) + multi_json (~> 0.0.2) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + oauth (~> 0.4.0) + oauth2 (~> 0.0.10) + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + faraday (0.4.6) + addressable (>= 2.1.1) + rack (>= 1.0.1) + json (1.4.3) + mg (0.0.8) + rake + multi_json (0.0.4) + nokogiri (1.4.3.1) + oauth (0.4.1) + oauth2 (0.0.10) + faraday (~> 0.4.1) + multi_json (>= 0.0.4) + rack (1.2.1) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rspec (1.3.0) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-core! + oa-oauth! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + webmock (~> 1.3.3) diff --git a/oa-openid/Gemfile.lock b/oa-openid/Gemfile.lock new file mode 100644 index 0000000..6fd4845 --- /dev/null +++ b/oa-openid/Gemfile.lock @@ -0,0 +1,50 @@ +PATH + remote: /Users/mbleigh/gems/omniauth/oa-core + specs: + oa-core (0.0.3) + rack (~> 1.1) + +PATH + remote: . + specs: + oa-openid (0.0.3) + oa-core (= 0.0.3) + rack-openid (~> 1.1.1) + ruby-openid-apps-discovery + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + json (1.4.3) + mg (0.0.8) + rake + rack (1.2.1) + rack-openid (1.1.1) + rack (>= 0.4) + ruby-openid (>= 2.0.3) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rspec (1.3.0) + ruby-openid (2.1.8) + ruby-openid-apps-discovery (1.2.0) + ruby-openid (>= 2.1.7) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-core! + oa-openid! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + ruby-openid-apps-discovery + webmock (~> 1.3.3) diff --git a/oa-openid/oa-openid.gemspec b/oa-openid/oa-openid.gemspec index bb24b8a..c34f12f 100644 --- a/oa-openid/oa-openid.gemspec +++ b/oa-openid/oa-openid.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |gem| gem.files = Dir.glob("{lib}/**/*") + %w(README.rdoc LICENSE.rdoc CHANGELOG.rdoc) gem.add_dependency 'oa-core', version - gem.add_dependency 'rack-openid', '~> 1.0.3' + gem.add_dependency 'rack-openid', '~> 1.1.1' gem.add_dependency 'ruby-openid-apps-discovery' eval File.read(File.join(File.dirname(__FILE__), '../development_dependencies.rb')) diff --git a/omniauth/Gemfile b/omniauth/Gemfile index 5366bae..20779dd 100644 --- a/omniauth/Gemfile +++ b/omniauth/Gemfile @@ -2,7 +2,7 @@ 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-corporate', :path => File.expand_path('../../oa-corporate/', __FILE__) +gem 'oa-enterprise', :path => File.expand_path('../../oa-enterprise/', __FILE__) gem 'oa-oauth', :path => File.expand_path('../../oa-oauth/', __FILE__) gem 'oa-openid', :path => File.expand_path('../../oa-openid/', __FILE__) diff --git a/omniauth/Gemfile.lock b/omniauth/Gemfile.lock new file mode 100644 index 0000000..0deaf0c --- /dev/null +++ b/omniauth/Gemfile.lock @@ -0,0 +1,101 @@ +PATH + remote: /Users/mbleigh/gems/omniauth/oa-basic + specs: + oa-basic (0.0.3) + multi_json (~> 0.0.2) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + rest-client (~> 1.6.0) + +PATH + remote: /Users/mbleigh/gems/omniauth/oa-core + specs: + oa-core (0.0.3) + rack (~> 1.1) + +PATH + remote: /Users/mbleigh/gems/omniauth/oa-enterprise + specs: + oa-enterprise (0.0.3) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + +PATH + remote: /Users/mbleigh/gems/omniauth/oa-oauth + specs: + oa-oauth (0.0.3) + multi_json (~> 0.0.2) + nokogiri (~> 1.4.2) + oa-core (= 0.0.3) + oauth (~> 0.4.0) + oauth2 (~> 0.0.10) + +PATH + remote: /Users/mbleigh/gems/omniauth/oa-openid + specs: + oa-openid (0.0.3) + oa-core (= 0.0.3) + rack-openid (~> 1.1.1) + ruby-openid-apps-discovery + +PATH + remote: . + specs: + omniauth (0.0.3) + oa-basic (= 0.0.3) + oa-core (= 0.0.3) + oa-enterprise (= 0.0.3) + oa-oauth (= 0.0.3) + oa-openid (= 0.0.3) + +GEM + remote: http://rubygems.org/ + specs: + addressable (2.2.0) + crack (0.1.8) + faraday (0.4.6) + addressable (>= 2.1.1) + rack (>= 1.0.1) + json (1.4.3) + mg (0.0.8) + rake + mime-types (1.16) + multi_json (0.0.4) + nokogiri (1.4.3.1) + oauth (0.4.1) + oauth2 (0.0.10) + faraday (~> 0.4.1) + multi_json (>= 0.0.4) + rack (1.2.1) + rack-openid (1.1.1) + rack (>= 0.4) + ruby-openid (>= 2.0.3) + rack-test (0.5.4) + rack (>= 1.0) + rake (0.8.7) + rest-client (1.6.0) + mime-types (>= 1.16) + rspec (1.3.0) + ruby-openid (2.1.8) + ruby-openid-apps-discovery (1.2.0) + ruby-openid (>= 2.1.7) + webmock (1.3.3) + addressable (>= 2.1.1) + crack (>= 0.1.7) + +PLATFORMS + ruby + +DEPENDENCIES + json (~> 1.4.3) + mg (~> 0.0.8) + oa-basic! + oa-core! + oa-enterprise! + oa-oauth! + oa-openid! + omniauth! + rack-test (~> 0.5.4) + rake + rspec (~> 1.3.0) + webmock (~> 1.3.3) diff --git a/omniauth/omniauth.gemspec b/omniauth/omniauth.gemspec index 9fe04b9..bbd9649 100644 --- a/omniauth/omniauth.gemspec +++ b/omniauth/omniauth.gemspec @@ -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 oa-corporate).each do |subgem| + %w(oa-core oa-oauth oa-basic oa-openid oa-enterprise).each do |subgem| gem.add_dependency subgem, version end