summaryrefslogtreecommitdiff
path: root/omnibus/Gemfile
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2016-01-14 14:08:03 +0000
committerThom May <thom@chef.io>2016-01-14 14:08:03 +0000
commit51cfbdc4d16739caac4d946fadbe678444aafe34 (patch)
tree56dfd8f1cd9fd933de27268b32402e955a43ac2b /omnibus/Gemfile
parent05064423057d4cf46f4713b81b08829cf6d20af6 (diff)
downloadchef-51cfbdc4d16739caac4d946fadbe678444aafe34.tar.gz
Use double quotes by default
This is an entirely mechanically generated (chefstyle -a) change, to go along with chef/chefstyle#5 . We should pick something and use it consistently, and my opinion is that double quotes are the appropriate thing.
Diffstat (limited to 'omnibus/Gemfile')
-rw-r--r--omnibus/Gemfile14
1 files changed, 7 insertions, 7 deletions
diff --git a/omnibus/Gemfile b/omnibus/Gemfile
index ad415d576a..12001d1c17 100644
--- a/omnibus/Gemfile
+++ b/omnibus/Gemfile
@@ -1,7 +1,7 @@
-source 'https://rubygems.org'
+source "https://rubygems.org"
-gem 'omnibus', github: 'chef/omnibus'
-gem 'omnibus-software', github: 'chef/omnibus-software'
+gem "omnibus", github: "chef/omnibus"
+gem "omnibus-software", github: "chef/omnibus-software"
# This development group is installed by default when you run `bundle install`,
# but if you are using Omnibus in a CI-based infrastructure, you do not need
@@ -9,10 +9,10 @@ gem 'omnibus-software', github: 'chef/omnibus-software'
# by running `bundle install --without development` to speed up build times.
group :development do
# Use Berkshelf for resolving cookbook dependencies
- gem 'berkshelf', '~> 3.0'
+ gem "berkshelf", "~> 3.0"
# Use Test Kitchen with Vagrant for converging the build environment
- gem 'test-kitchen', '~> 1.4.0'
- gem 'kitchen-vagrant', '~> 0.19.0'
- gem 'winrm-transport', '~> 1.0'
+ gem "test-kitchen", "~> 1.4.0"
+ gem "kitchen-vagrant", "~> 0.19.0"
+ gem "winrm-transport", "~> 1.0"
end