I miss having Vim around when I’m trying to develop a one-off script to run on Heroku. I found this plugin that installs vim but I thought it’d be great to just throw in busybox from the official binaries page. Here’s a modification to the vim plugin that does just that:
This file contains 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
#!/usr/bin/env ruby | |
# Put this file at ~/.heroku/plugins/busybox/init.rb | |
# Call it with 'heroku busybox' | |
require 'heroku/helpers' | |
require 'heroku/command' | |
require 'heroku/command/run' | |
class Heroku::Command::Busybox < Heroku::Command::Run | |
# Run bash on heroku with busybox | |
# | |
def index | |
run_attached(busybox_cmd) | |
end | |
protected | |
def busybox_cmd | |
<<-CMD | |
mkdir busybox | |
curl http://busybox.net/downloads/binaries/latest/busybox-x86_64 --location --silent > busybox/busybox | |
chmod a+x busybox/busybox | |
export PATH=$PATH:/app/busybox | |
busybox --install -s busybox | |
bash | |
CMD | |
end | |
end |