Skip to content

Commit

Permalink
Fix AS::Concern example (current example doesn't work)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximerety committed Nov 15, 2012
1 parent 3fb67b4 commit d0ba816
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion activesupport/lib/active_support/concern.rb
Expand Up @@ -4,7 +4,9 @@ module ActiveSupport
# module M
# def self.included(base)
# base.extend ClassMethods
# scope :disabled, -> { where(disabled: true) }
# base.class_eval do
# scope :disabled, -> { where(disabled: true) }
# end
# end
#
# module ClassMethods
Expand Down

0 comments on commit d0ba816

Please sign in to comment.