The Ruby on Rails Starter demonstrates a simple, reusable Ruby web application based on the Rails framework.
- Install Ruby
- Download and extract the starter code from the Bluemix UI
- cd into the app directory
- Run
gem install bundler
to install bundler - Run
bundler install
to install app dependencies - Run
rails server
- Access the running app in a browser at http://localhost:3000
The command rails new <app name>
is used to create the files and folders that make up the structure of a Rails application. They are described in the Getting Started with Rails guide.