That will allow you to host two apps via a single config file. To separate
out your MVCs, try this:
-- myapp.rb --
%w(camping).each { |lib| require lib }
Camping.goes :MyApp
%w(helpers models views controllers).each { |lib| require lib }
module MyApp
...
end
-- models.rb --
module MyApp::Models
...
end
-- --
And so on for helpers.rb, views.rb and controllers.rb
_______________________________________________
Camping-list mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/camping-list