diff --git a/Rakefile b/Rakefile index 4a43d12..43a2060 100644 --- a/Rakefile +++ b/Rakefile @@ -72,7 +72,7 @@ namespace :gems do desc 'Push all gems to Gemcutter' task :release do each_gem('is releasing to Gemcutter...') do - system('rake gemcutter') + system('rake gem:publish') end end diff --git a/VERSION b/VERSION index 6812f81..05b19b1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.3 \ No newline at end of file +0.0.4 \ No newline at end of file diff --git a/development_dependencies.rb b/development_dependencies.rb index c29df03..ca25666 100644 --- a/development_dependencies.rb +++ b/development_dependencies.rb @@ -5,12 +5,13 @@ # two blocks parallel. if Object.const_defined?(:Bundler) && Bundler.const_defined?(:Dsl) && self.kind_of?(Bundler::Dsl) group :development do - gem 'rake' - gem 'mg', '~> 0.0.8' - gem 'rspec', '~> 1.3.0' - gem 'webmock', '~> 1.3.4' - gem 'rack-test', '~> 0.5.4' - gem 'json', '~> 1.4.3' # multi_json implementation + gem 'rack' + gem 'rake' + gem 'mg', '~> 0.0.8' + gem 'rspec', '~> 1.3.0' + gem 'webmock', '~> 1.3.4' + gem 'rack-test', '~> 0.5.4' + gem 'json', '~> 1.4.3' # multi_json implementation end else #gemspec gem.add_development_dependency 'rake' diff --git a/oa-basic/Gemfile.lock b/oa-basic/Gemfile.lock index 15b4559..96ccaa8 100644 --- a/oa-basic/Gemfile.lock +++ b/oa-basic/Gemfile.lock @@ -1,16 +1,16 @@ PATH remote: . specs: - oa-basic (0.0.3) + oa-basic (0.0.4) multi_json (~> 0.0.2) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) rest-client (~> 1.6.0) PATH remote: /Users/mbleigh/gems/omniauth/oa-core specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) GEM @@ -43,6 +43,7 @@ DEPENDENCIES mg (~> 0.0.8) oa-basic! oa-core! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0) diff --git a/oa-core/Gemfile.lock b/oa-core/Gemfile.lock index 96dec60..587c5d8 100644 --- a/oa-core/Gemfile.lock +++ b/oa-core/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) GEM @@ -28,6 +28,7 @@ DEPENDENCIES json (~> 1.4.3) mg (~> 0.0.8) oa-core! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0) diff --git a/oa-enterprise/Gemfile.lock b/oa-enterprise/Gemfile.lock index 6bb84ab..ba51815 100644 --- a/oa-enterprise/Gemfile.lock +++ b/oa-enterprise/Gemfile.lock @@ -1,15 +1,15 @@ PATH remote: /Users/mbleigh/gems/omniauth/oa-core specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) PATH remote: . specs: - oa-enterprise (0.0.3) + oa-enterprise (0.0.4) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) GEM remote: http://rubygems.org/ @@ -25,7 +25,7 @@ GEM rack (>= 1.0) rake (0.8.7) rspec (1.3.0) - webmock (1.3.3) + webmock (1.3.4) addressable (>= 2.1.1) crack (>= 0.1.7) @@ -37,7 +37,8 @@ DEPENDENCIES mg (~> 0.0.8) oa-core! oa-enterprise! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0) - webmock (~> 1.3.3) + webmock (~> 1.3.4) diff --git a/oa-oauth/Gemfile.lock b/oa-oauth/Gemfile.lock index c53c2aa..e7ab80b 100644 --- a/oa-oauth/Gemfile.lock +++ b/oa-oauth/Gemfile.lock @@ -1,16 +1,16 @@ PATH remote: /Users/mbleigh/gems/omniauth/oa-core specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) PATH remote: . specs: - oa-oauth (0.0.3) + oa-oauth (0.0.4) multi_json (~> 0.0.2) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) oauth (~> 0.4.0) oauth2 (~> 0.0.10) @@ -48,6 +48,7 @@ DEPENDENCIES mg (~> 0.0.8) oa-core! oa-oauth! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0) diff --git a/oa-openid/Gemfile.lock b/oa-openid/Gemfile.lock index 5855f23..51ecab4 100644 --- a/oa-openid/Gemfile.lock +++ b/oa-openid/Gemfile.lock @@ -1,14 +1,14 @@ PATH remote: /Users/mbleigh/gems/omniauth/oa-core specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) PATH remote: . specs: - oa-openid (0.0.3) - oa-core (= 0.0.3) + oa-openid (0.0.4) + oa-core (= 0.0.4) rack-openid (~> 1.1.1) ruby-openid-apps-discovery @@ -43,6 +43,7 @@ DEPENDENCIES mg (~> 0.0.8) oa-core! oa-openid! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0) diff --git a/omniauth/Gemfile.lock b/omniauth/Gemfile.lock index 804926d..5d3c76c 100644 --- a/omniauth/Gemfile.lock +++ b/omniauth/Gemfile.lock @@ -1,52 +1,52 @@ PATH remote: /Users/mbleigh/gems/omniauth/oa-basic specs: - oa-basic (0.0.3) + oa-basic (0.0.4) multi_json (~> 0.0.2) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) rest-client (~> 1.6.0) PATH remote: /Users/mbleigh/gems/omniauth/oa-core specs: - oa-core (0.0.3) + oa-core (0.0.4) rack (~> 1.1) PATH remote: /Users/mbleigh/gems/omniauth/oa-enterprise specs: - oa-enterprise (0.0.3) + oa-enterprise (0.0.4) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) PATH remote: /Users/mbleigh/gems/omniauth/oa-oauth specs: - oa-oauth (0.0.3) + oa-oauth (0.0.4) multi_json (~> 0.0.2) nokogiri (~> 1.4.2) - oa-core (= 0.0.3) + oa-core (= 0.0.4) 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) + oa-openid (0.0.4) + oa-core (= 0.0.4) 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) + omniauth (0.0.4) + oa-basic (= 0.0.4) + oa-core (= 0.0.4) + oa-enterprise (= 0.0.4) + oa-oauth (= 0.0.4) + oa-openid (= 0.0.4) GEM remote: http://rubygems.org/ @@ -95,6 +95,7 @@ DEPENDENCIES oa-oauth! oa-openid! omniauth! + rack rack-test (~> 0.5.4) rake rspec (~> 1.3.0)