facebook twitter hatena line email

Ruby/rails/helloworld

提供: 初心者エンジニアの簡易メモ
2015年5月20日 (水) 03:11時点における127.0.0.1 (トーク)による版 (ページの作成:「==プロジェクト作成== rails new helloworld ===プロジェクト作成(mysqlを使う場合はこちら=== rails new helloworld -d mysql ==コントロー...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

プロジェクト作成

rails new helloworld

プロジェクト作成(mysqlを使う場合はこちら

rails new helloworld -d mysql 

コントローラー作成

ruby script/rails generate controller test hello

testはコントローラー名、helloはアクション名、ルータが追記(configs/routes.rb)

アクション作成

app/controllers/test_controller.rb

class TestController < ApplicationController
  def hello
  end
end

ビュー作成

app/view/hello.html.erb

<html><bodyhello</body></html>