Pin google-api-client; sanitize Gemfile

Change-Id: I2494450fc96230b069595e79657ce38286aeff6e
This commit is contained in:
Spencer Krum 2016-04-14 15:18:53 -07:00
parent bfe2669891
commit 173da20679
1 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,9 @@ source 'https://rubygems.org'
group :development, :test do
gem 'puppetlabs_spec_helper', :require => false
# Pin google-api-client after it released a ruby 2.0 only version
gem 'google-api-client', '0.9.4'
gem 'metadata-json-lint'
# This is nice and all, but let's not worry about it until we've actually
# got puppet 4.x sorted
@ -16,7 +19,6 @@ group :development, :test do
gem 'puppet-lint-empty_string-check'
gem 'puppet-lint-leading_zero-check'
gem 'puppet-lint-variable_contains_upcase'
gem 'puppet-lint-numericvariable'
gem 'puppet-lint-spaceship_operator_without_tag-check'
gem 'puppet-lint-undef_in_function-check'
@ -25,7 +27,10 @@ group :development, :test do
else
gem 'puppet', '~> 3.0', :require => false
end
end
group :system_tests do
gem 'beaker-rspec', :require => false
end
# vim:ft=ruby