Skip to content

Instantly share code, notes, and snippets.

@satour
Created November 28, 2015 08:01
Show Gist options
  • Save satour/ffc03743eef20e19baaf to your computer and use it in GitHub Desktop.
Save satour/ffc03743eef20e19baaf to your computer and use it in GitHub Desktop.
指定したheroku app の config を表示する(Heroku CLIを使う)
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