From 0133118dc2d4386451ae395b9aede21e7d854d8b Mon Sep 17 00:00:00 2001 From: "Tobias L. Maier" Date: Sat, 4 Apr 2015 15:59:20 +0200 Subject: [PATCH 1/2] Loosen Gemfile version restrictions Only be so strict if it is really necessary --- Gemfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index 1db17d0..4c0a5a1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,14 +1,14 @@ source 'https://rubygems.org' -gem 'berkshelf', '= 3.1.5' -gem 'chefspec', '= 4.1.1' -gem 'foodcritic', '= 4.0.0' -gem 'kitchen-gce', '= 0.1.2' -gem 'kitchen-vagrant', '= 0.15.0' -gem 'rake', '= 10.3.2' -gem 'rubocop', '= 0.26.1' -gem 'stove', '= 3.2.3' -gem 'thor-scmversion', '= 1.7.0' +gem 'berkshelf', '~> 3.2' +gem 'chefspec', '~> 4.2' +gem 'foodcritic', '~> 4.0' +gem 'kitchen-gce', '= 0.2' +gem 'kitchen-vagrant', '~> 0.16' +gem 'rake', '~> 10.4' +gem 'rubocop', '~> 0.29' +gem 'stove', '~> 3.2', '>= 3.2.3' +gem 'thor-scmversion', '~> 1.7.0' # v1.2.1 (latest stable) is somewhat broken when working with AWS. Fixes are in master, so # I'm locking to a specific working commit until a newer release is created. From ccfcff280e5d97f6e83032779371e834c7f8c593 Mon Sep 17 00:00:00 2001 From: "Tobias L. Maier" Date: Sat, 4 Apr 2015 16:00:47 +0200 Subject: [PATCH 2/2] Latest test-kitchen should have this fixed --- Gemfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 4c0a5a1..a761716 100644 --- a/Gemfile +++ b/Gemfile @@ -8,8 +8,5 @@ gem 'kitchen-vagrant', '~> 0.16' gem 'rake', '~> 10.4' gem 'rubocop', '~> 0.29' gem 'stove', '~> 3.2', '>= 3.2.3' +gem 'test-kitchen', '~> 1.3', '>= 1.3.1' gem 'thor-scmversion', '~> 1.7.0' - -# v1.2.1 (latest stable) is somewhat broken when working with AWS. Fixes are in master, so -# I'm locking to a specific working commit until a newer release is created. -gem 'test-kitchen', :git => 'https://github.com/test-kitchen/test-kitchen.git', :ref => '3d3d024443e89bb5a7182e22b5ce2e59b8964853'