本日は、チュートリアルを実施します。
日本一簡単なRails3.2チュートリアルをそのまま実施しました。
ただし、ルーティングの設定で、表記ミスがあったので、その部分だけ修正して実施しました。
雛形の生成
rails new hello cd hello
Gemファイルの編集
vi Gemfile
gem 'execjs' gem 'therubyracer'
不要なファイルの削除
rm README.rdoc rm public/index.html rm -rf test
画面の生成
vi app/controllers/top_controller.rb
class TopController < ApplicationController def index render :text => 'Hello' end end
ルーティングの設定
vi config/routes.rb
Hello::Application.routes.draw do root :to => 'top#index' end
webサーバの起動
rails server