aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 21:06:07 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 21:06:07 -0500
commit1df502e000581680209692bed7249c2125cf183d (patch)
tree284f5684f6b68bce6bb82d558d8811a1b78f3908 /activerecord
parentf8dbe4c7cc9d2109781c7283bd0d8617db6f2c09 (diff)
downloadrails-1df502e000581680209692bed7249c2125cf183d.tar.gz
rails-1df502e000581680209692bed7249c2125cf183d.tar.bz2
rails-1df502e000581680209692bed7249c2125cf183d.zip
mark ReversibleBlockHelper as :nodoc: [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/migration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb
index d3edcf3cdb..451104106c 100644
--- a/activerecord/lib/active_record/migration.rb
+++ b/activerecord/lib/active_record/migration.rb
@@ -466,7 +466,7 @@ module ActiveRecord
@connection.respond_to?(:reverting) && @connection.reverting
end
- class ReversibleBlockHelper < Struct.new(:reverting)
+ class ReversibleBlockHelper < Struct.new(:reverting) # :nodoc:
def up
yield unless reverting
end