| 1234567891011121314151617181920212223 |
- module Docs
- class Redis < UrlScraper
- self.type = 'redis'
- self.release = '4.0.6'
- self.base_url = 'https://redis.io/commands'
- self.links = {
- home: 'https://redis.io/',
- code: 'https://github.com/antirez/redis'
- }
- html_filters.push 'redis/entries', 'redis/clean_html', 'title'
- options[:container] = ->(filter) { filter.root_page? ? '#commands' : '.text' }
- options[:title] = false
- options[:root_title] = 'Redis'
- options[:follow_links] = ->(filter) { filter.root_page? }
- options[:attribution] = <<-HTML
- © 2009–2017 Salvatore Sanfilippo<br>
- Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
- HTML
- end
- end
|