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 what is the role of rails controller?

0 Answers  


What is the difference between delete and destroy ?

0 Answers  


Where does the start_tabnav gets informations for tabs rendering in ruby rail?

0 Answers  


Explain what are the servers supported by ruby on rails?

0 Answers  


what is the function of garbage collection in Ruby on Rails?

0 Answers  






what is the difference between the Observers and Callbacks in Ruby on Rails?

0 Answers  


What is the functionality of Model views and controllers

2 Answers  


what is Cross-Site Request Forgery (CSRF) and how Rails is protected against it?

0 Answers  


How are blocks created?

0 Answers  


how you define Instance Variable, Global Variable and Class Variable in Ruby?

0 Answers  


How can you run rails without creating databases?

0 Answers  


Explain view in rails?

0 Answers  


Categories