Hi Anthony Anthony Baker said: > ruby script/generate controller MyTest > > Which generated the file my_test_controller.rb in the app/controllers > directory. [snip] > LoadError (No such file to load -- mytest_controller.rb): I believe the problem is related to your controller name. Rails creates the controller file using the controller name + "_controller.rb" as its name. On file creation, it's adding an extra underscore due to the lowercase-to-uppercase shift in MyTest, but it doesn't do the same when trying to load the file -- it's trying to find mytest_controller.rb. This looks like a bug, although I'm not sure if CamelCase controller names are supported (I'm guessing they should be). If you do it with a controller named "Test" it'll probably work. HTH Andre