# ruby-gumbo ## Description `ruby-gumbo` is a ruby binding for the Gumbo HTML5 parser. ## Installation `ruby-gumbo` can be directly installed from http://rubygems.org: gem install ruby-gumbo Or you can create the gem with `rake package`, then install it with `gem install` (the gem file is in the `pkg` directory). ## Example ```ruby require 'net/http' html = Net::HTTP.get URI.parse('http://example.org') Gumbo::parse(html) {|doc| doc.dump_tree} ``` Result: ```