summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-07 18:26:37 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-07 18:31:28 -0700
commitf44e2eb58d190907860e70fbd955a7647c93aea3 (patch)
tree821424e893c099c038f7432a3aa93ebe633f4415
parentcf6c28f5ab5fbc18c252d3f726ce6be8a8e24a65 (diff)
downloadchef-f44e2eb58d190907860e70fbd955a7647c93aea3.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--chef-config/lib/chef-config/version.rb2
-rw-r--r--chef-utils/lib/chef-utils/version.rb2
-rw-r--r--lib/chef/version.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/chef-config/lib/chef-config/version.rb b/chef-config/lib/chef-config/version.rb
index 10590b30ce..a7278ca1e9 100644
--- a/chef-config/lib/chef-config/version.rb
+++ b/chef-config/lib/chef-config/version.rb
@@ -14,6 +14,6 @@
# limitations under the License.
module ChefConfig
- CHEFCONFIG_ROOT = File.expand_path('..', __dir__)
+ CHEFCONFIG_ROOT = File.expand_path("..", __dir__)
VERSION = "16.2.87".freeze
end
diff --git a/chef-utils/lib/chef-utils/version.rb b/chef-utils/lib/chef-utils/version.rb
index 267363eeea..26a7f6c1c3 100644
--- a/chef-utils/lib/chef-utils/version.rb
+++ b/chef-utils/lib/chef-utils/version.rb
@@ -14,6 +14,6 @@
# limitations under the License.
module ChefUtils
- CHEFUTILS_ROOT = File.expand_path('..', __dir__)
+ CHEFUTILS_ROOT = File.expand_path("..", __dir__)
VERSION = "16.2.87".freeze
end
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index 22c2f0976d..5300cb4013 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -22,7 +22,7 @@
require_relative "version_string"
class Chef
- CHEF_ROOT = File.expand_path('..', __dir__)
+ CHEF_ROOT = File.expand_path("..", __dir__)
VERSION = Chef::VersionString.new("16.2.87")
end