class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
def hello
render html: "hello, world!"
end
endRails.application.routes.draw do
resources :users
root 'application#hello'
end
"Hello world", a "Method Not Allowed". heroku create