am new to ruby. tell me one thing.
i can view my project on browser when i write "ruby
script/server". otherwise i cant view my project on localhost.

what i have to do to view my project always on browser?
pls help

Answers were Sorted based on User's Feedback



am new to ruby. tell me one thing. i can view my project on browser when i write "ruby script..

Answer / rohit kumar shaw

For any Scripting languages like PHP, Ruby etc need a server
(It may be virtual server i.e. localhost) to run their code.

When you run this code in command line ruby script/server it
means you already started your apache server to run the code
and hence you can see your output in browser. If you close
your command line window, it means apache server is stop
working now and then you can't be able to see your output
anymore.

Is This Answer Correct ?    7 Yes 3 No

am new to ruby. tell me one thing. i can view my project on browser when i write "ruby script..

Answer / bidesh mondal

if u run the server (ruby script/server -d) then the command
line will close ,but server is running.The server will run
until the machine is restart. you can start different port
using ruby script/server -p 3001 -d

Is This Answer Correct ?    4 Yes 1 No

am new to ruby. tell me one thing. i can view my project on browser when i write "ruby script..

Answer / manish nautiyal

ruby script/server -d

with -d your server will run always. This is for only your localhost machine. When you deploy your project on live server than you have to use apache to run it.

And to see it in the browser you have to type

http://localhost:3000/

3000 port is by default port for ruby on rails you can change the port by using -p

ruby script/server -d -p 3001

Is This Answer Correct ?    3 Yes 0 No

am new to ruby. tell me one thing. i can view my project on browser when i write "ruby script..

Answer / chandan kumar jha

Configure nginx server for running rails application.It is not required to run ruby script/server only need passenger gem.After restarting system not need to start rails server application automatically started.

Is This Answer Correct ?    0 Yes 0 No

am new to ruby. tell me one thing. i can view my project on browser when i write "ruby script..

Answer / chandanjha1989

Configure nginx server it keep your application always running no need to start rails server every time.Your application automatically restarted after your system restart.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Ruby on Rails Interview Questions

Explain me the log that has to be seen to report errors in ruby rails?

0 Answers  


What are the different filters used in ruby on rails?

0 Answers  


what is ORM (Object-Relationship-Model) in Rails?

0 Answers  


What are naming conventions?

0 Answers  


What are models in rails?

0 Answers  






Explain the controller in rails?

0 Answers  


What is the functionality of Model views and controllers

2 Answers  


What are the various components of rail?

0 Answers  


What is the main function of helpers used in ruby on rails?

0 Answers  


Difference between gem and plugin?

0 Answers  


What is the function of orm in ruby on rails?

0 Answers  


How to serialize data with yaml?

0 Answers  


Categories