Created
September 21, 2011 17:56
-
-
Save fidothe/1232803 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
gem install bundler | |
git clone git://github.com/fidothe/pub_finder_general.git | |
cd pub_finder_general | |
bundle install |
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
#!/bin/bash | |
sudo aptitude install -y build-essential libxslt1-dev git-core libsqlite3-dev | |
curl -L -O http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p290.tar.gz | |
tar -xzf ruby-1.9.2-p290.tar.gz | |
cd ruby-1.9.2-p290 | |
./configure | |
make | |
sudo make install | |
cd ~/ | |
echo "export GEM_HOME=~/.gem" >> ~/.bashrc | |
echo 'export PATH=~/.gem/bin:$PATH' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment