| 12345678910111213141516171819202122 |
- module Docs
- class Rethinkdb < UrlScraper
- self.name = 'RethinkDB'
- self.type = 'rethinkdb'
- self.version = '1.15.2'
- self.base_url = 'http://rethinkdb.com/api/javascript/'
- html_filters.push 'rethinkdb/entries', 'rethinkdb/clean_html'
- options[:trailing_slash] = false
- options[:container] = '.container .section'
- options[:fix_urls] = ->(url) do
- url.sub! %r{rethinkdb.com/api/(?!javascript|ruby|python)}, 'rethinkdb.com/api/javascript/'
- end
- options[:attribution] = <<-HTML
- © RethinkDB contributors<br>
- Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
- HTML
- end
- end
|