1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

mark ReversibleBlockHelper as :nodoc: [ci skip]

This commit is contained in:
Francesco Rodriguez 2013-04-04 21:06:07 -05:00
parent f8dbe4c7cc
commit 1df502e000

View file

@ -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