Displaying 1 result from an estimated 1 matches for "any_models".
Did you mean:
any_model
2006 Jan 18
0
Namespace Issues
...imila post of mine appears in "Rails Engines development" as
well.
The goal
---------
I would like to have the model
AnyModule::AnyModel
in apps/models/any_module/any_model.rb
managed by the controller
AnyModule::AnyModelController
in apps/controllers/any_module/any_models_controller.rb
with views
in apps/views/any_module/any_models
I am experimentig a quite strange behavior:
1 - create a test rails application (e.g. tasklist)
2 - setup a db (e.g. tasklist_dev) with a table (e.g. categories)
3 - from RAILS_ROOT
$ ./script generate scaffold category...