diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-06-08 14:17:12 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-06-08 14:17:12 -0700 |
commit | 3478442d5a39ad6e91503da3754526af24cbab91 (patch) | |
tree | 3a5c20715d5a7ba62be3e5bb0599de7d20518882 | |
parent | 2ce4df51a4cdb319a3a47fa0d8ff73e851f99233 (diff) | |
download | chef-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.rb | 2 | ||||
-rw-r--r-- | lib/chef/version.rb | 2 |
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__) |