diff options
| author | L. E. Segovia | 2017-10-31 09:54:30 -0300 |
|---|---|---|
| committer | L. E. Segovia | 2017-10-31 09:54:30 -0300 |
| commit | c636be07f97e4a659f038c51cab6f0efe2e83bfa (patch) | |
| tree | 84a2bc8fa70dd4b805cf82e8f4e391d2afb9ea80 | |
| parent | 917c138eeb4af0cee212f94edc425512dfbade99 (diff) | |
| download | brew-c636be07f97e4a659f038c51cab6f0efe2e83bfa.tar.bz2 | |
Separate do end into multiple lines
8 files changed, 24 insertions, 12 deletions
diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight-multi.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight-multi.rb index edbb9aff9..6d0d64798 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight-multi.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight-multi.rb @@ -7,7 +7,9 @@ cask 'with-postflight-multi' do pkg 'MyFancyPkg/Fancy.pkg' - postflight do end + postflight do + end - postflight do end + postflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight.rb index b680f8c44..295a2534e 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-postflight.rb @@ -7,5 +7,6 @@ cask 'with-postflight' do pkg 'MyFancyPkg/Fancy.pkg' - postflight do end + postflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight-multi.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight-multi.rb index b7505f7f5..d45480fac 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight-multi.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight-multi.rb @@ -7,7 +7,9 @@ cask 'with-preflight-multi' do pkg 'MyFancyPkg/Fancy.pkg' - preflight do end + preflight do + end - preflight do end + preflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight.rb index bdb0f6145..d7d1bef06 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-preflight.rb @@ -7,5 +7,6 @@ cask 'with-preflight' do pkg 'MyFancyPkg/Fancy.pkg' - preflight do end + preflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight-multi.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight-multi.rb index 389d9991c..58f096061 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight-multi.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight-multi.rb @@ -7,7 +7,9 @@ cask 'with-uninstall-postflight-multi' do pkg 'MyFancyPkg/Fancy.pkg' - uninstall_postflight do end + uninstall_postflight do + end - uninstall_postflight do end + uninstall_postflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight.rb index adb894a15..4beffe489 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-postflight.rb @@ -7,5 +7,6 @@ cask 'with-uninstall-postflight' do pkg 'MyFancyPkg/Fancy.pkg' - uninstall_postflight do end + uninstall_postflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight-multi.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight-multi.rb index 22c1628c1..f671da64f 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight-multi.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight-multi.rb @@ -7,7 +7,9 @@ cask 'with-uninstall-preflight-multi' do pkg 'MyFancyPkg/Fancy.pkg' - uninstall_preflight do end + uninstall_preflight do + end - uninstall_preflight do end + uninstall_preflight do + end end diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight.rb index 5510f4234..2978ed527 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-preflight.rb @@ -7,5 +7,6 @@ cask 'with-uninstall-preflight' do pkg 'MyFancyPkg/Fancy.pkg' - uninstall_preflight do end + uninstall_preflight do + end end |
