diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-07-30 23:19:15 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-07-30 23:19:15 -0500 |
commit | 1d537fdc47065d58ea268b6eac9593e559596431 (patch) | |
tree | f5d68a712917c085cfe1ee3817d26ab0c76f2a15 /activemodel/lib | |
parent | cb15fe55dab3287562f0f90d7a8ca1d1c9f5c162 (diff) | |
download | rails-1d537fdc47065d58ea268b6eac9593e559596431.tar.gz rails-1d537fdc47065d58ea268b6eac9593e559596431.tar.bz2 rails-1d537fdc47065d58ea268b6eac9593e559596431.zip |
add :nodoc: to ActiveModel::Observing#inherited [ci skip]
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/observing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/observing.rb b/activemodel/lib/active_model/observing.rb index 1114ac962a..aae0d3a2ef 100644 --- a/activemodel/lib/active_model/observing.rb +++ b/activemodel/lib/active_model/observing.rb @@ -195,7 +195,7 @@ module ActiveModel end # Notify observers when the observed class is subclassed. - def inherited(subclass) + def inherited(subclass) #:nodoc: super notify_observers :observed_class_inherited, subclass end |