Eu fiz isso na minha máquina Ubuntu 14.04.3:
cd ~
rails new test-app
cd test-app
rails server
... e começa logo. Então, parece-me que você está tendo um problema com seu aplicativo. Por favor, tente o que eu fiz e veja como vai ser.
Além disso, não tive nada além de problemas com rvm
no Ubuntu. Então, eu uso rbenv
( link ).
Para instalar o rbenv
, faça:
# remove old rvm
sudo apt-get remove rbenv ruby-bundler ruby-rvm
# common rbenv and rails dependencies, generally good things to have
sudo apt-get install zlib1g-dev openssl libreadline-dev git-core libnotify-dev \
libc6-dev libssl-dev libmysql++-dev libsqlite3-dev \
make build-essential libssl-dev libreadline6-dev \
libyaml-dev curl
# rbenv installer
curl https://raw.githubusercontent.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
# Add rbenv init to .bashrc
echo 'export RBENV_ROOT="$HOME/.rbenv"' >> ~/.bashrc
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bashrc
exec $SHELL
# Install ruby (this takes many minutes ...~15-ish ...maybe 30 depending on your system)
rbenv install 2.2.2
# Defining which ruby version to use globally
rbenv global 2.2.2
Além disso, o desenvolvimento do Rails no Ubuntu seria auxiliado pelo Prax ( link ), é como o Pow, mas para Linux e está escrito em puro Ruby.
EDITAR:
Eu tentei o aplicativo pinteresting
e ele também começou bem:
# I had to install a 2.0.0 version of Ruby
rbenv install 2.0.0-p645
cd ~
git clone https://github.com/onemonthrails/pinteresting
cd pinteresting
echo '2.0.0-p645' > .ruby-version
bundle install
rake db:migrate
rails server