DOS窓でrailsのアプリケーションルートに移動し、
rails generate controller tameshi01 index
を実行すると、下記が生成される。
●コントローラ
\app\controllers\tameshi01_controller.rb
class Tameshi01Controller < ApplicationController
def index
end
end
●ビュー
\app\views\tameshi01\index.html.erb
<h1>Tameshi01#index</h1>
<p>Find me in app/views/tameshi01/index.html.erb</p>