Created
October 5, 2014 11:20
Revisions
-
Pluto1010 revised this gist
Oct 5, 2014 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,3 @@ # update apt index apt-get update -qy -
Pluto1010 created this gist
Oct 5, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ locale-gen de_DE.UTF-8 > /dev/null; # update apt index apt-get update -qy # upgrade system apt-get upgrade -qy # install git apt-get install -qy git-core build-essential # remove all unneeded packages apt-get autoremove -qy # default gem settings echo 'gem: --no-ri --no-rdoc' >> /etc/gemrc # install ruby 2.1.3 from ruby source cd /tmp &&\ wget -O ruby-install-0.4.3.tar.gz https://github.com/postmodern/ruby-install/archive/v0.4.3.tar.gz &&\ tar -xzf ruby-install-0.4.3.tar.gz &&\ cd ruby-install-0.4.3/ &&\ make install ruby-install ruby 2.1.3 gem install bundler; cd /vagrant bundle install