What is the quickest way to get up and running with rails? (on a fresh linux instance from eg. ec2)
Here's what I have now: (the number at the front indicates the number of seconds it took)
005 gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
455 curl -sSL https://get.rvm.io | bash -s stable --rails
015 rails new facebook
005 sudo apt-get install nodejs -y
005 cd facebook; rails server -b 0.0.0.0
(Personally I think having to issue 5+ commands is a bit too much for this simple task)
note: i am referring to the current versions of rails and ubuntu (rails 4.2 and ubuntu 14.04, as offered by Amazon EC2)