aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/callbacks.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-22 14:41:06 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-22 14:41:06 -0700
commit3726080ecea8b34edeac37f358e8dd050cbb00cb (patch)
treefcad86f85494f96fcc667073d8a97e1229ff7222 /activemodel/lib/active_model/callbacks.rb
parent96ce1f2553f895bfd25e7ca677fb7ed746d04fdd (diff)
parentbc7ac33846274a0d2c93741bf6df441d4853e4e9 (diff)
downloadrails-3726080ecea8b34edeac37f358e8dd050cbb00cb.tar.gz
rails-3726080ecea8b34edeac37f358e8dd050cbb00cb.tar.bz2
rails-3726080ecea8b34edeac37f358e8dd050cbb00cb.zip
Merge pull request #6832 from frodsan/nodoc_patch1
add :nodoc: to internal implementations [ci skip]
Diffstat (limited to 'activemodel/lib/active_model/callbacks.rb')
-rw-r--r--activemodel/lib/active_model/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/callbacks.rb b/activemodel/lib/active_model/callbacks.rb
index b8ba1a0a52..80385c2614 100644
--- a/activemodel/lib/active_model/callbacks.rb
+++ b/activemodel/lib/active_model/callbacks.rb
@@ -46,7 +46,7 @@ module ActiveModel
# Would only create the +after_create+ and +before_create+ callback methods in
# your class.
module Callbacks
- def self.extended(base)
+ def self.extended(base) #:nodoc:
base.class_eval do
include ActiveSupport::Callbacks
end