Quando vou acessar o meu http://localhost:3000/companies/new
o seguinte erro aparece, posso saber o porque disso ? :
Routing Error
uninitialized constant CompaniesController Try running rake routes for more information on available routes.
E o código do controller:
class CompaniesController < ApplicationController def new @company = Company.new end
def create @company = Company.new(params[:company])
if @company.save redirect_to root_path, notice: "Company was successfully created." else render action: "new" end end end