module Roda::RodaPlugins::Delegate::ClassMethods

def class_delegate(*meths)

Delegate the given methods to the class
def class_delegate(*meths)
  meths.each do |meth|
    define_method(meth){|*a, &block| self.class.send(meth, *a, &block)}
  end
end