Super cheapo (and super effective!) minification.
In Ruby:
code = 'alert("hello there");'
GoogleClosure.minify(code)
Or through the shell:
cat script.js | ruby google_closure.rb > script.min.js
Or minify many files in one go:
# Rakefile
task :minify do
require 'google_closure'
files = Dir['public/js/jquery.*.js']
files += Dir['public/js/app.*.js']
combined = files.map { |fn| File.open(fn) { |f| f.read } }.join("\n")
minified = GoogleClosure.minify(combined)
File.open('public/js/script.min.js', 'w') { |f| f << minified }
end