Why doesn't my ruby on rails work? (I'm doing the basic tutorial)
- by alex
I do this:
script/generate controller home index
And it says: "existing... " and a lot of stuff.
THen I go to mydomain.com:3000/home/index
But it says: sorry, something went wrong!
Why?
class HomeController < ApplicationController
def index
end
end