rails new hello cd hello ずらずら―っとファイルが作成されます。 Gemfile を編集して下記を追加します。 gem 'execjs' gem 'therubyracer' 2.不要ファイルを削除 rm README.rdoc rm public/index.html rm -rf test 3.Hello画面を作成 app/controllers/top_controller.rb を作成してこのように書きます。 class TopController < ApplicationController def index render :text => 'Hello' end end 4.ルーティングを設定 config/routes.rb を編集して1行追加します。 Hello::Application.routes.draw do root :to => 't