Use command:
bash <( curl https://gist.github.com/raw/666936/rails_on_alwaysdata.sh ) MYAPP
Where MYAPP is the name of your rails application
Works like a charm with rails 2.3.8 on ruby 1.8.7
-
Add this to ~/.bash_profile:
export PATH="$HOME/bin:$HOME/.gem/bin:$PATH" export GEM_PATH="$HOME/.gem"
-
Install gems in ~/.gem folder:
cd ~ mkdir .gem cd .gem gem install compass --no-ri --no-rdoc -i .
-
Add this line into config/environment.rb (on top), where USERNAME is your client user name:
ENV['GEM_PATH'] += ':/home/USERNAME/.gem/'
compass init rails PATH/TO/MYAPP --using blueprint/semantic
ruby script/plugin install git://github.com/adamwiggins/yaml_db.git