diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-17 12:15:26 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-17 13:25:02 -0700 |
commit | a0c32511bc6634538374ca4b433032b8acd05f96 (patch) | |
tree | 15c7cfbd0d773488ab814e7c24f0c58505c9134b /tasks | |
parent | 3d0379a2ad531a0b3db5ed2827bf30ef07b26100 (diff) | |
download | chef-a0c32511bc6634538374ca4b433032b8acd05f96.tar.gz |
fix Style/BlockDelimiters, Style/MultilineBlockLayout and 0.42.0 engine upgrade
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/cbgb.rb | 4 | ||||
-rw-r--r-- | tasks/maintainers.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tasks/cbgb.rb b/tasks/cbgb.rb index 9aa6700137..70ca1036e8 100644 --- a/tasks/cbgb.rb +++ b/tasks/cbgb.rb @@ -44,9 +44,9 @@ begin out << cbgb(cbgb["corporations"], cbgb["Org"]["Corporate-Contributors"]["governers"]) + "\n\n" out << "### " + cbgb["Org"]["Lieutenants"]["title"] + "\n\n" out << cbgb(cbgb["people"], cbgb["Org"]["Lieutenants"]["governers"]) + "\n\n" - File.open(CBGB_TARGET, "w") { |fn| + File.open(CBGB_TARGET, "w") do |fn| fn.write out - } + end end end diff --git a/tasks/maintainers.rb b/tasks/maintainers.rb index 91742854bb..e13d4724b0 100644 --- a/tasks/maintainers.rb +++ b/tasks/maintainers.rb @@ -46,9 +46,9 @@ begin out << format_person(source["Org"]["Lead"]["person"]) + "\n\n" out << format_components(source["Org"]["Components"]) - File.open(TARGET, "w") { |fn| + File.open(TARGET, "w") do |fn| fn.write out - } + end end desc "Synchronize GitHub teams" |