hakanersu
4/11/2014 - 10:03 PM

gistfile1.txt

# If you meet install errors, see abid-hussain's comment


sudo apt-get --force-yes install build-essential openssl libreadline6 libreadline6-dev curl git-core \
zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev \
libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison
 
&&
 
\curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled
 
&&
 
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
 
&&
 
source ~/.bash_profile
 
&&
 
rvm install 2.0.0-p353
 
&&
 
rvm use --default 2.0.0-p353
 
&&
ruby -v
 
 
&&
 
 
gem install rails --pre

&& 
# I recommend compiling source code "http://nodejs.org" than using apt-get.
#sudo apt-get install nodejs
wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
tar -xvf node-v0.10.24.tar.gz
cd node-v0.10.24 && ./configure && make && sudo make install