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
# starts all unicorns listed in /etc/unicorn/*.conf | |
# lives under /etc/unicorn/rpcm.conf | |
ENV=production | |
APP_ROOT=/opt/rpcm |
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 | |
# A simple Ruby script to update Chromium from dev build. | |
# Currently only works on Mac and Win32. | |
# If you want progress bar, sudo gem install ruby-progressbar | |
# Read more about progress bar here: http://github.com/nex3/ruby-progressbar/tree/master | |
# Usage: | |
# ruby chromium_updater.rb | |
require 'fileutils' |