diff options
author | Xavier Noria <fxn@hashref.com> | 2012-11-30 00:02:34 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-11-30 00:02:34 -0800 |
commit | d7deec30f57a90991a0b4b5766d58a7090bb6c1f (patch) | |
tree | 31cc39f2442ad8970dc056080c11495fb6eea7ec | |
parent | db994b75e68cf5f4bb707198f8e8b015d630791e (diff) | |
parent | 5b50c7d4d569069a1826c2876d654da7b047acc8 (diff) | |
download | rails-d7deec30f57a90991a0b4b5766d58a7090bb6c1f.tar.gz rails-d7deec30f57a90991a0b4b5766d58a7090bb6c1f.tar.bz2 rails-d7deec30f57a90991a0b4b5766d58a7090bb6c1f.zip |
Merge pull request #8380 from route/fix-concern-description
Fixed description for ActiveSupport::Concern typical case
-rw-r--r-- | activesupport/lib/active_support/concern.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/concern.rb b/activesupport/lib/active_support/concern.rb index ae1d0633ce..677f7c0bb0 100644 --- a/activesupport/lib/active_support/concern.rb +++ b/activesupport/lib/active_support/concern.rb @@ -6,7 +6,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 |