Merge pull request #1943 from zyition/fix-redis-sort-set-missing

fix: missing `Redis/Sorted Set` docs
pull/1969/head
Simon Legner 2 years ago committed by GitHub
commit 8c8fd0e695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -489,7 +489,7 @@ module Docs
"scripting" => "Core: Scripting and Functions", "scripting" => "Core: Scripting and Functions",
"server" => "Core: Server managment", "server" => "Core: Server managment",
"set" => "Core: Set", "set" => "Core: Set",
"sorted-set:" => "Core: Sorted Set", "sorted-set" => "Core: Sorted Set",
"stream" => "Core: Stream", "stream" => "Core: Stream",
"string" => "Core: String", "string" => "Core: String",
"transactions" => "Core: Transactions", "transactions" => "Core: Transactions",

@ -1,7 +1,7 @@
module Docs module Docs
class Redis < UrlScraper class Redis < UrlScraper
self.type = 'redis' self.type = 'redis'
self.release = '7.0.8' self.release = '7.0.10'
self.base_url = 'https://redis.io/commands' self.base_url = 'https://redis.io/commands'
self.links = { self.links = {
home: 'https://redis.io/', home: 'https://redis.io/',
@ -16,7 +16,7 @@ module Docs
options[:follow_links] = ->(filter) { filter.root_page? } options[:follow_links] = ->(filter) { filter.root_page? }
options[:attribution] = <<-HTML options[:attribution] = <<-HTML
&copy; 2009&ndash;2022 Salvatore Sanfilippo<br> &copy; 2006&ndash;2022 Salvatore Sanfilippo<br>
Licensed under the Creative Commons Attribution-ShareAlike License 4.0. Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
HTML HTML

Loading…
Cancel
Save