block.rb 254 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 require_dependency 'block' class Block def owner_with_container_block_plugin owner = owner_without_container_block_plugin owner.kind_of?(ContainerBlock) ? owner.owner : owner end alias_method_chain :owner, :container_block_plugin end