diff options
author | Thom May <thom@chef.io> | 2016-01-14 14:08:03 +0000 |
---|---|---|
committer | Thom May <thom@chef.io> | 2016-01-14 14:08:03 +0000 |
commit | 51cfbdc4d16739caac4d946fadbe678444aafe34 (patch) | |
tree | 56dfd8f1cd9fd933de27268b32402e955a43ac2b /Gemfile | |
parent | 05064423057d4cf46f4713b81b08829cf6d20af6 (diff) | |
download | chef-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 'Gemfile')
-rw-r--r-- | Gemfile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3,7 +3,7 @@ gemspec :name => "chef" gem "activesupport", "< 4.0.0", :group => :compat_testing, :platform => "ruby" -gem 'chef-config', path: "chef-config" if File.exists?(__FILE__ + '../chef-config') +gem "chef-config", path: "chef-config" if File.exists?(__FILE__ + "../chef-config") group(:docgen) do gem "yard" @@ -25,13 +25,13 @@ end group(:development, :test) do gem "simplecov" - gem 'rack', "~> 1.5.1" + gem "rack", "~> 1.5.1" # for testing new chefstyle rules # gem 'chefstyle', github: 'chef/chefstyle' - gem 'chefstyle', '= 0.1.0' + gem "chefstyle", "= 0.1.0" - gem 'ruby-shadow', :platforms => :ruby unless RUBY_PLATFORM.downcase.match(/(aix|cygwin)/) + gem "ruby-shadow", :platforms => :ruby unless RUBY_PLATFORM.downcase.match(/(aix|cygwin)/) # For external tests # gem 'chef-zero', github: 'chef/chef-zero' @@ -47,8 +47,8 @@ group(:development, :test) do # gem 'chef-rewind' end -instance_eval(ENV['GEMFILE_MOD']) if ENV['GEMFILE_MOD'] +instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"] # If you want to load debugging tools into the bundle exec sandbox, # add these additional dependencies into chef/Gemfile.local -eval(IO.read(__FILE__ + '.local'), binding) if File.exists?(__FILE__ + '.local') +eval(IO.read(__FILE__ + ".local"), binding) if File.exists?(__FILE__ + ".local") |