Here is my routes.rb
scope :path_names => {:new => "creaza", :edit => "modifica", :sign_up => "inregistreaza", :sign_in => "autentificare", :sign_out => "iesire", :show => "vezi"} do
......
resources :nota, :only => [:new, :create]
......
end
And here is the output of rake routes:
....
nota POST /nota(.:format) nota#create
new_notum GET /nota/creaza(.:format) nota#new
....
What? notum? Where does 'notum' come from?
Thanks,