How to install Rails 4 (final) along with the latest version of Ruby via RVM?

ruby, ruby-on-rails, rvm

Solution

`rvm get stable` to get the last rvm versión

`rvm install 2.0.0` to install ruby 2.0

`rvm use 2.0.0` to use ruby 2.0

`gem install rails` to install rails 4.0

Problem

I've found ways to install Rails 4 via RVM but all of them refers to the beta version. How to install the final version along with the latest version of Ruby (via RVM)?

Original source