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 /chef.gemspec | |
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 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chef.gemspec b/chef.gemspec index 359e002189..c6edfbd13e 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -1,8 +1,8 @@ -$:.unshift(File.dirname(__FILE__) + '/lib') -require 'chef/version' +$:.unshift(File.dirname(__FILE__) + "/lib") +require "chef/version" Gem::Specification.new do |s| - s.name = 'chef' + s.name = "chef" s.version = Chef::VERSION s.platform = Gem::Platform::RUBY s.extra_rdoc_files = ["README.md", "CONTRIBUTING.md", "LICENSE" ] @@ -33,7 +33,7 @@ Gem::Specification.new do |s| s.add_dependency "chef-zero", "~> 4.4.0", ">= 4.2.2" s.add_dependency "pry", "~> 0.9" - s.add_dependency 'plist', '~> 3.1.0' + s.add_dependency "plist", "~> 3.1.0" # Audit mode requires these, so they are non-developmental dependencies now %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_dependency gem, "~> 3.4" } |