summaryrefslogtreecommitdiff
path: root/chef-bin
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-07 15:54:52 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-07 17:32:22 -0700
commit6c4c32340ac0fcebb53768cb78f5760e55c35514 (patch)
tree70de57d90bacbe6be118c9b6ead9efc1e650098e /chef-bin
parented460911a49716817ded2986e81a5116dfbb795e (diff)
downloadchef-6c4c32340ac0fcebb53768cb78f5760e55c35514.tar.gz
Fix quotes for Chefstyle
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-bin')
-rw-r--r--chef-bin/chef-bin.gemspec2
-rw-r--r--chef-bin/lib/chef-bin/version.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/chef-bin/chef-bin.gemspec b/chef-bin/chef-bin.gemspec
index 0b87227be8..1e7c45d8e9 100644
--- a/chef-bin/chef-bin.gemspec
+++ b/chef-bin/chef-bin.gemspec
@@ -1,5 +1,5 @@
# coding: utf-8
-lib = File.expand_path('lib', __dir__)
+lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "chef-bin/version"
diff --git a/chef-bin/lib/chef-bin/version.rb b/chef-bin/lib/chef-bin/version.rb
index 3aa4f15786..15bf9be9cb 100644
--- a/chef-bin/lib/chef-bin/version.rb
+++ b/chef-bin/lib/chef-bin/version.rb
@@ -20,7 +20,7 @@
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
module ChefBin
- CHEFBIN_ROOT = File.expand_path('..', __dir__)
+ CHEFBIN_ROOT = File.expand_path("..", __dir__)
VERSION = "16.2.86".freeze
end