method
tag_end
tag_end(name)
public
Hide source
# File lib/rss/parser.rb, line 351 def tag_end(name) if DEBUG p "end tag #{name}" p @tag_stack end text = @text_stack.pop tags = @tag_stack.pop pr = @proc_stack.pop pr.call(text, tags) unless pr.nil? @ns_stack.pop end