I\'m new to ruby and rails and i installed rails in to the ubuntu. but when i go to the start server by typing \"rails s\" it doesn\'t start and comes following message . bu
I ran into this problem and was confused for a minute until I realized I accidentally deleted my bin folder.
How to fix it:
cd
back out of the root of the Rails app.rails new name_of_your_app
-- make sure it's the same name as the directory that already exists.n
for "no" each time it asks. n
for everything else it will keep everything else.application.html.haml
file, and so Rails also generated an application.html.erb
file for me in views/layouts
which I didn't need and so deleted. Notice any other files that were generated and delete any you don't want.rails s
to start the WEBrick server.