
December 11th, 2006, 10:04 PM
|
|
Contributing User
|
|
Join Date: Mar 2003
Posts: 130
Time spent in forums: 10 h 21 m 15 sec
Reputation Power: 6
|
|
|
Routing error Recognition failed for....
Hello,
I've been running a bunch of rails tutorials trying to run ruby and I've always been successful when I created controllers using the ruby script/generate controller Trials. Then suddenly, when I do it in the ruby programming environment in my code branch, I get this routing error:
Recognition failed for "/trials"
Here's my controller that was created:
Code:
class TrialsController < ApplicationController def index flash[:notice] = 'This is def index trials_controller' end end
All the other scripts are working fine on my localhost machine.
Just don't get it
|