lib/webgen/contentprocessor/rdoc.rb in webgen-0.5.11 vs lib/webgen/contentprocessor/rdoc.rb in webgen-0.5.12
- old
+ new
@@ -10,10 +10,10 @@
def call(context)
require 'rdoc/markup/to_html'
context.content = ::RDoc::Markup::ToHtml.new.convert(context.content)
context
rescue LoadError
- raise Webgen::LoadError.new('rdoc/markup/to_html', self.class.name, context.dest_node.alcn, 'rdoc')
+ raise Webgen::LoadError.new('rdoc/markup/to_html', self.class.name, context.dest_node, 'rdoc')
end
end
end