Help me : problem in running rails application

Hello to all , I am new in ruby development, so please me, i am asking a very simple query.

Problem : I created a simple greeting application

1. F:\RubyProjects>rails chapterone

2. F:\RubyProjects\chapterone>rails script/generate controller greeting

3. after that i edit greeting_controller.rb

class GreetingController < ApplicationController   def index     @welcome_message="Welcome to your first rail application"   end end

4. then i create a index.html.rb file in app/view/greeting folder

<html> <body> <h1><%=@welcome_message %></h1> </body> </html>

5. then i open browser http:\\localhost:3000/greeting

here i got a error

vpgholap@gmail.com wrote:

4. then i create a index.html.rb file in app/view/greeting folder

I think that this file should be named index.html.erb (.erb, not .rb)

Paolo