Skip to content

Instantly share code, notes, and snippets.

View alexg0's full-sized avatar

Alexander Goldstein alexg0

  • Eligo Energy, LLC
  • Miami, FL
View GitHub Profile
@alexg0
alexg0 / mongo_template.rb
Created November 28, 2009 14:57 — forked from bawNg/mongo_template.rb
mongo_template.rb
# mongo_template.rb
# fork of a fork of Ben Scofield's Rails MongoMapper Template (http://gist.github.com/181842)
#
# To use:
# rails project_name -m template.file
# remove unneeded defaults
run "rm public/index.html"
run "rm public/images/rails.png"
run "rm public/javascripts/controls.js"
@alexg0
alexg0 / installing_jruby_on_ubuntu.sh
Created November 27, 2009 19:18
Installing jruby on ubuntu
# get current jruby
wget http://jruby.kenai.com/downloads/1.4.0/jruby-bin-1.4.0.tar.gz
tar xzvf jruby-bin-1.4.0.tar.gz
sudo mv jruby-1.4.0/ /opt
# link executables in /usr/local/bin
sudo ln -s /opt/jruby-1.4.0/bin/{jgem,jirb,jruby} /usr/local/bin