summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2017-06-08 14:17:12 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2017-06-08 14:17:12 -0700
commit3478442d5a39ad6e91503da3754526af24cbab91 (patch)
tree3a5c20715d5a7ba62be3e5bb0599de7d20518882
parent2ce4df51a4cdb319a3a47fa0d8ff73e851f99233 (diff)
downloadchef-3478442d5a39ad6e91503da3754526af24cbab91.tar.gz
fix chefstyle again, confused as to where this is coming from
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--chef-config/lib/chef-config/package_task.rb2
-rw-r--r--lib/chef/version.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/chef-config/lib/chef-config/package_task.rb b/chef-config/lib/chef-config/package_task.rb
index 33c28b23fa..3ab273532d 100644
--- a/chef-config/lib/chef-config/package_task.rb
+++ b/chef-config/lib/chef-config/package_task.rb
@@ -222,7 +222,7 @@ module ChefConfig
# this repo. Do not edit this manually. Edit the VERSION file and run the rake
# task instead.
#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-#{"\nrequire 'chef/version_string'\n" if use_versionstring}
+#{"\nrequire \"chef/version_string\"\n" if use_versionstring}
#{class_or_module} #{module_name}
#{module_name.upcase}_ROOT = File.expand_path("../..", __FILE__)
VERSION = #{use_versionstring ? "Chef::VersionString.new(\"#{version}\")" : "\"#{version}\""}
diff --git a/lib/chef/version.rb b/lib/chef/version.rb
index dfd7af6fef..8b941445ab 100644
--- a/lib/chef/version.rb
+++ b/lib/chef/version.rb
@@ -19,7 +19,7 @@
# task instead.
#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-require 'chef/version_string'
+require "chef/version_string"
class Chef
CHEF_ROOT = File.expand_path("../..", __FILE__)