Categories
Heroku Linux Ruby

Use Busybox in a Heroku dyno

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:

#!/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
view raw init.rb hosted with ❤ by GitHub