lib/rouge/formatters/null.rb in rouge-2.1.1 vs lib/rouge/formatters/null.rb in rouge-2.2.0
- old
+ new
@@ -9,10 +9,10 @@
def initialize(*)
end
def stream(tokens, &b)
tokens.each do |tok, val|
- yield "#{tok} #{val.inspect}\n"
+ yield "#{tok.qualname} #{val.inspect}\n"
end
end
end
end
end