module DSLKit::BlockSelf
def block_self(&block)
This method returns the receiver _self_ of the context in which _block_
def block_self(&block) eval 'self', block.__send__(:binding) end
def block_self(&block) eval 'self', block.__send__(:binding) end