Skip to content

Instantly share code, notes, and snippets.

@dhh
Created June 8, 2011 18:09
Show Gist options
  • Save dhh/1014971 to your computer and use it in GitHub Desktop.
Save dhh/1014971 to your computer and use it in GitHub Desktop.
Use concerns to keep your models manageable
# autoload concerns
module YourApp
class Application < Rails::Application
config.autoload_paths += %W(
#{config.root}/app/controllers/concerns
#{config.root}/app/models/concerns
)
end
end
# app/models/concerns/trashable.rb
module Trashable
extend ActiveSupport::Concern
included do
default_scope where(trashed: false)
scope :trashed, where(trashed: true)
end
def trash
update_attribute :trashed, true
end
end
# app/models/message.rb
class Message < ActiveRecord::Base
include Trashable, Subscribable, Commentable, Eventable
end
@ludyna
Copy link

ludyna commented Oct 27, 2014

@QuotableWater7
Copy link

@IZBOR besides the fact that this discussion has nothing to do with DCI, DCI is slow and is not really spreading a ton because of that.

@Bartuz
Copy link

Bartuz commented Oct 24, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment