X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/6418b4c790adc1373cea9e4e3342982e9a209505..0daf7a2d16256a72397d2acd87b25e4e1c76d7ec:/utils/generate-command-help.rb?ds=inline diff --git a/utils/generate-command-help.rb b/utils/generate-command-help.rb index 96cccc2b..f6ca8874 100755 --- a/utils/generate-command-help.rb +++ b/utils/generate-command-help.rb @@ -10,7 +10,8 @@ GROUPS = [ "pubsub", "transactions", "connection", - "server" + "server", + "scripting" ].freeze GROUPS_BY_NAME = Hash[* @@ -48,7 +49,7 @@ def commands require "json" require "uri" - url = URI.parse "https://github.com/antirez/redis-doc/raw/master/commands.json" + url = URI.parse "https://raw.github.com/antirez/redis-doc/master/commands.json" client = Net::HTTP.new url.host, url.port client.use_ssl = true response = client.get url.path