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

Merge pull request #24508 from alexmirk/master

Improved ActionView flows.rb documention [ci skip]
This commit is contained in:
Vipul A M 2016-04-12 01:35:44 +05:30
commit dbb2c2c7b5

View file

@ -37,9 +37,8 @@ module ActionView
end
# Try to get stored content. If the content
# is not available and we are inside the layout
# fiber, we set that we are waiting for the given
# key and yield.
# is not available and we're inside the layout fiber,
# then it will begin waiting for the given key and yield.
def get(key)
return super if @content.key?(key)
@ -60,8 +59,8 @@ module ActionView
end
# Appends the contents for the given key. This is called
# by provides and resumes back to the fiber if it is
# the key it is waiting for.
# by providing and resuming back to the fiber,
# if that's the key it's waiting for.
def append!(key, value)
super
@fiber.resume if @waiting_for == key