module DSLKit::BlockSelf

def block_self(&block)

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