This file contains hidden or 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
sudo update-alternatives --install \ | |
sudo update-alternatives --install \ | |
/usr/local/bin/ruby ruby /opt/ruby-1.8/bin/ruby 50 \ | |
--slave /usr/local/bin/erb erb /opt/ruby-1.8/bin/erb \ | |
--slave /usr/local/bin/gem gem /opt/ruby-1.8/bin/gem \ | |
--slave /usr/local/bin/rake rake /opt/ruby-1.8/bin/rake \ | |
--slave /usr/local/bin/irb irb /opt/ruby-1.8/bin/irb \ | |
--slave /usr/local/bin/rdoc rdoc /opt/ruby-1.8/bin/rdoc \ | |
--slave /usr/local/bin/ri ri /opt/ruby-1.8/bin/ri \ |
This file contains hidden or 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
"International Date Line West":(GMT-11:00) International Date Line West | |
"Midway Island":(GMT-11:00) Midway Island, Samoa | |
"Hawaii":(GMT-10:00) Hawaii | |
"Alaska":(GMT-09:00) Alaska | |
"Pacific Time (US & Canada)":(GMT-08:00) Pacific Time (US & Canada) | |
"Tijuana":(GMT-08:00) Tijuana | |
This file contains hidden or 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
# SUPER DARING APP TEMPLATE 1.0 | |
# By Peter Cooper | |
# modified to use authlogic, as per the tutorial here: http://www.binarylogic.com/2008/11/3/tutorial-authlogic-basic-setup | |
# Link to local copy of edge rails | |
inside('vendor') { run 'ln -s ~/src/ext/git/rails rails' } | |
# Delete unnecessary files | |
run "rm README" | |
run "rm public/index.html" |