module Roda::RodaPlugins::Path::ClassMethods

def path_block(klass)

Return the block related to the given class, or nil if there is no block.
def path_block(klass)
  # RODA4: Remove
  if opts[:path_class_by_name]
    klass = klass.name
  end
  path_classes[klass]
end