Problem running simple rail application

V

Vikas Gholap

Hello to all , please Give me solution..............
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

-------------------------------
MissingSourceFile in GreetingController#index


So can any one suggest me , how to get out of this error.


Thank you,
Vikas Gholap.
 
Y

Yaser Sulaiman

[Note: parts of this message were removed to make it a legal post.]

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

I think the file extension is causing the problem. Try to change it to
html.erb.

Don't forget to post your future Rails question on the Ruby on Rails
forum[0]. ;)

Regards,
Yaser Sulaiman

[0] http://www.ruby-forum.com/forum/3
 
D

Dejan Dimic

Hello to all , please Give me solution..............
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

  -------------------------------
MissingSourceFile in GreetingController#index

So can any one suggest me , how to get out of this error.

Thank you,
Vikas Gholap.

I have repeat your steps exactly as you presented them and everything
is working fine as expected, unlike in your case.
There is something missing in your presentation.
You have to give us more details to be able to help you with this
unexpected behavior.
 
V

Vikas Gholap

Thanks Yaser , problem solved by changing file extension.

but new query arise to me
Below is my query,



I am trying to develop simple shoppingcart application.
1) created rails application by

projects>rails ShoppingCart

2) then created database for shopping cart table-products

fields are- id, title, description, price, expiredate

3) created one Product scaffold by

projects>ShoppingCart>ruby script/generate scaffold Product title:string
description:text price:decimal expiredate:datetime

4)then i browse and did some new, edit, delete operations.

5) Now i want to add one field to my products table- image_url.
then fields are- id, title, description, price, expiredate, image_url.

I want to overwrite Product sacffold so that when i browse products page
it should display me added field i.e image_url.

give me steps to solve this problem.
Is there any migration related issue?

Vikas
 
V

Vikas Gholap

Thanks, Dejan Dimic.

but new query arise to me
Below is my query,



I am trying to develop simple shoppingcart application.
1) created rails application by

projects>rails ShoppingCart

2) then created database for shopping cart table-products

fields are- id, title, description, price, expiredate

3) created one Product scaffold by

projects>ShoppingCart>ruby script/generate scaffold Product title:string
description:text price:decimal expiredate:datetime

4)then i browse and did some new, edit, delete operations.

5) Now i want to add one field to my products table- image_url.
then fields are- id, title, description, price, expiredate, image_url.

I want to overwrite Product sacffold so that when i browse products page
it should display me added field i.e image_url.

give me steps to solve this problem.
Is there any migration related issue?

Vikas
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,773
Messages
2,569,594
Members
45,119
Latest member
IrmaNorcro
Top