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

What is unit testing (in classical terms)? What is the primary technique when writing a test ?

0 Answers  


Explain me what is the role of rails controller?

0 Answers  


Explain some features of nested scaffolding.

0 Answers  


What is a proc ?

0 Answers  


what is different between activerecord::relation's count, length and size methods?

0 Answers  






what is session and cookies

4 Answers  


What is difference between form_for and form_tag?

0 Answers  


Difference between gem and plugin?

0 Answers  


Which command is used to create a migration?

0 Answers  


Explain unobtrusive javascript in rails.

0 Answers  


What I have to do to view my project always on browser?

0 Answers  


Do you know what is sweeper in rails?

0 Answers  


Categories