# File lib/facets/more/cut.rb, line 186
  def target( name, &superblock )
    target = method(name)
    (class << target; self; end).class_eval do
      define_method( :super ){ superblock.call }
    end
    target
  end