From 289b9fe3c2fde4442aa1cff415b8996e17bf0fc5 Mon Sep 17 00:00:00 2001 From: "Stuart P. Bentley" Date: Thu, 29 Oct 2020 20:23:08 -0700 Subject: [PATCH] Update lua.rb This adds Lua 5.4, bumps Lua 5.3 to (probably) the last version, and updates the copyright. --- lib/docs/scrapers/lua.rb | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/docs/scrapers/lua.rb b/lib/docs/scrapers/lua.rb index e3608918..5192548a 100644 --- a/lib/docs/scrapers/lua.rb +++ b/lib/docs/scrapers/lua.rb @@ -8,12 +8,17 @@ module Docs options[:skip_links] = true options[:attribution] = <<-HTML - © 1994–2017 Lua.org, PUC-Rio.
+ © 1994–2020 Lua.org, PUC-Rio.
Licensed under the MIT License. HTML + version '5.4' do + self.release = '5.4.1' + self.base_url = 'https://www.lua.org/manual/5.4/' + end + version '5.3' do - self.release = '5.3.4' + self.release = '5.3.6' self.base_url = 'https://www.lua.org/manual/5.3/' end