summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathen Harvey <nharvey@chef.io>2016-01-21 22:21:11 -0500
committerNathen Harvey <nharvey@chef.io>2016-01-21 22:21:11 -0500
commit95d45a87dfad4db53d3b6de1085b4f364e9f6c88 (patch)
tree262cb1cb88779e8df4a7ac4284caca69c268cffd
parentd85f059458b9c039d01e4cc4d5072f52af97f3b2 (diff)
downloadchef-95d45a87dfad4db53d3b6de1085b4f364e9f6c88.tar.gz
Follow chefstylenathen/add_cbgb
-rw-r--r--tasks/cbgb.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks/cbgb.rb b/tasks/cbgb.rb
index 67457b6bd0..17c69e0446 100644
--- a/tasks/cbgb.rb
+++ b/tasks/cbgb.rb
@@ -17,8 +17,8 @@
# limitations under the License.
#
-require 'rake'
-require 'tomlrb'
+require "rake"
+require "tomlrb"
CBGB_SOURCE = File.join(File.dirname(__FILE__), "..", "CBGB.toml")
CBGB_TARGET = File.join(File.dirname(__FILE__), "..", "CBGB.md")
@@ -52,7 +52,7 @@ def components(list, cmp)
out = ""
cmp.each do |k,v|
out << "\n#### #{v['title'].gsub('#','\\#')}\n"
- out << cbgb(list, v['cbgb'])
+ out << cbgb(list, v["cbgb"])
end
out
end