Created
November 28, 2015 08:01
-
-
Save satour/ffc03743eef20e19baaf to your computer and use it in GitHub Desktop.
指定したheroku app の config を表示する(Heroku CLIを使う)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apps = ARGV | |
| unless apps.empty? | |
| apps.each {|app| system("heroku config --app #{app}")} | |
| else | |
| puts "Heroku appname required as args." | |
| exit | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment