
Models is an empty Ruby module for housing model classes derived from ActiveRecord::Base. As a shortcut, you may derive from Base which is an alias for ActiveRecord::Base.
module Camping::Models
class Post < Base; belongs_to :user end
class User < Base; has_many :posts end
end
Models are used in your controller classes. However, if your model class name conflicts with a controller class name, you will need to refer to it using the Models module.
module Camping::Controllers
class Post < R '/post/(\d+)'
def get(post_id)
@post = Models::Post.find post_id
render :index
end
end
end
Models cannot be referred to in Views at this time.

[ show source ]
# File lib/camping.rb, line 722
722: def Y;self;end