module Rouge::Lexers

def self.load_const(const_name, relpath)

def self.load_const(const_name, relpath)
  return if const_defined?(const_name)
  root = Pathname.new(__FILE__).dirname.join('lexers')
  load root.join(relpath)
end