mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
712 B
24 lines
712 B
module Docs
|
|
class Redis < UrlScraper
|
|
self.type = 'redis'
|
|
self.release = 'up to 3.2.5'
|
|
self.base_url = 'http://redis.io/commands'
|
|
self.links = {
|
|
home: 'http://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–2016 Salvatore Sanfilippo<br>
|
|
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
|
|
HTML
|
|
end
|
|
end
|