diff --git a/cloud_controller/Gemfile.lock b/cloud_controller/Gemfile.lock index aa85fae83..a0f0ce84e 100644 --- a/cloud_controller/Gemfile.lock +++ b/cloud_controller/Gemfile.lock @@ -140,7 +140,7 @@ GEM yajl-ruby (~> 0.8.3) vcap_logging (0.1.3) vcap_stager (0.1.11) - vcap_staging (0.1.41) + vcap_staging (0.1.42) nokogiri (>= 1.4.4) rake rspec diff --git a/cloud_controller/vendor/cache/vcap_staging-0.1.41.gem b/cloud_controller/vendor/cache/vcap_staging-0.1.42.gem similarity index 77% rename from cloud_controller/vendor/cache/vcap_staging-0.1.41.gem rename to cloud_controller/vendor/cache/vcap_staging-0.1.42.gem index 706924ec8..5026e2cf8 100644 Binary files a/cloud_controller/vendor/cache/vcap_staging-0.1.41.gem and b/cloud_controller/vendor/cache/vcap_staging-0.1.42.gem differ diff --git a/stager/Gemfile.lock b/stager/Gemfile.lock index 8957468d9..269399eeb 100644 --- a/stager/Gemfile.lock +++ b/stager/Gemfile.lock @@ -43,7 +43,7 @@ GEM thin (~> 1.3.1) yajl-ruby (~> 0.8.3) vcap_logging (0.1.3) - vcap_staging (0.1.41) + vcap_staging (0.1.42) nokogiri (>= 1.4.4) rake rspec diff --git a/stager/vendor/cache/vcap_staging-0.1.41.gem b/stager/vendor/cache/vcap_staging-0.1.42.gem similarity index 77% rename from stager/vendor/cache/vcap_staging-0.1.41.gem rename to stager/vendor/cache/vcap_staging-0.1.42.gem index 706924ec8..5026e2cf8 100644 Binary files a/stager/vendor/cache/vcap_staging-0.1.41.gem and b/stager/vendor/cache/vcap_staging-0.1.42.gem differ diff --git a/staging/Gemfile.lock b/staging/Gemfile.lock index 34db3c4b9..38ce02746 100644 --- a/staging/Gemfile.lock +++ b/staging/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vcap_staging (0.1.41) + vcap_staging (0.1.42) nokogiri (>= 1.4.4) rake rspec diff --git a/staging/lib/vcap/staging/plugin/common.rb b/staging/lib/vcap/staging/plugin/common.rb index 71eb619e9..7fc4b838b 100644 --- a/staging/lib/vcap/staging/plugin/common.rb +++ b/staging/lib/vcap/staging/plugin/common.rb @@ -90,7 +90,7 @@ def self.camelize(word) # Checks the existence and version of the Ruby runtimes specified # by the sinatra and rails staging manifests. def self.check_ruby_runtimes - %w[sinatra rails3].each do |framework| + (%w[sinatra rails3] & manifests.keys).each do |framework| manifests[framework]['runtimes'].each do |hash| hash.each do |name, properties| exe, ver = properties['executable'], properties['version'] diff --git a/staging/lib/vcap/staging/version.rb b/staging/lib/vcap/staging/version.rb index 4113ef45f..0086b25bb 100644 --- a/staging/lib/vcap/staging/version.rb +++ b/staging/lib/vcap/staging/version.rb @@ -1,5 +1,5 @@ module VCAP module Staging - VERSION = '0.1.41' + VERSION = '0.1.42' end end