aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/support/fixtures/cask/Casks
diff options
context:
space:
mode:
authorMarkus Reiter2017-10-15 02:28:32 +0200
committerMarkus Reiter2017-10-18 14:39:09 +0200
commit9bee9ca5757d1c5f720787737fed6a534a620d72 (patch)
treeb1eed297d9eb169673d2ed308e5ef3ca3bb09d12 /Library/Homebrew/test/support/fixtures/cask/Casks
parent270b752f5d9d218bfbed6fe85b6974fa653fb25f (diff)
downloadbrew-9bee9ca5757d1c5f720787737fed6a534a620d72.tar.bz2
Use “squiggly” heredocs.
Diffstat (limited to 'Library/Homebrew/test/support/fixtures/cask/Casks')
-rw-r--r--Library/Homebrew/test/support/fixtures/cask/Casks/with-caveats.rb2
-rw-r--r--Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-script-app.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-caveats.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-caveats.rb
index d5d90114a..5624f486e 100644
--- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-caveats.rb
+++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-caveats.rb
@@ -8,7 +8,7 @@ cask 'with-caveats' do
app 'Caffeine.app'
# simple string is evaluated at compile-time
- caveats <<-EOS.undent
+ caveats <<~EOS
Here are some things you might want to know.
EOS
# do block is evaluated at install-time
diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-script-app.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-script-app.rb
index f5f3ae5dd..885f3b157 100644
--- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-script-app.rb
+++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-uninstall-script-app.rb
@@ -8,7 +8,7 @@ cask 'with-uninstall-script-app' do
app 'MyFancyApp/MyFancyApp.app'
postflight do
- IO.write "#{appdir}/MyFancyApp.app/uninstall.sh", <<-EOS.undent
+ IO.write "#{appdir}/MyFancyApp.app/uninstall.sh", <<~EOS
#!/bin/sh
/bin/rm -r "#{appdir}/MyFancyApp.app"
EOS