class RDoc::Require

def initialize(name, comment)

def initialize(name, comment)
  super()
  @name = name.gsub(/'|"/, "") #'
  self.comment = comment
end

def inspect # :nodoc:

:nodoc:
def inspect # :nodoc:
  "#<%s:0x%x require '%s' in %s>" % [
    self.class,
    object_id,
    @name,
    parent_file_name,
  ]
end