Sha256: 7b9e1b2498635d87df8866f4cb706243f18879d45fc72dde8836a6efb0e334a0
Contents?: true
Size: 889 Bytes
Versions: 1
Compression:
Stored size: 889 Bytes
Contents
# ruby-gumbo Ruby bindings for Google's [Gumbo][gumbo] HTML5 parser. ## Getting Started Stick it in your `Gemfile`! ```ruby gem 'ruby-gumbo', '~> 1.1' ``` And then parse away: ```ruby require 'gumbo' doc = Gumbo::parse(html) ``` You'll probably want to peruse the [documentation][docs] to see how to navigate a document and its nodes. ## Developing Grab the repository, and make sure to include submodules: ``` git checkout https://github.com/nevir/ruby-gumbo --recursive ``` And from there you should be able to `rake build` and `gem install pkg/*.gem`. ## License ruby-gumbo is licensed under the [ISC license](LICENSE), and packages the [gumbo-parser library][gumbo] (APACHE v2.0). This is not a Google product and is not supported by Google in any way. [gumbo]: https://github.com/google/gumbo-parser [docs]: http://rubydoc.info/github/nevir/ruby-gumbo/master/frames
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-gumbo-1.1.0 | README.mkd |