Version Lua documentation (5.1, 5.2, 5.3)

pull/359/merge
Julien Desgats 9 years ago committed by Thibaut Courouble
parent 0efa4c349e
commit 2018cd101a

@ -1,8 +1,6 @@
module Docs
class Lua < UrlScraper
self.type = 'lua'
self.release = '5.3'
self.base_url = 'http://www.lua.org/manual/5.3/'
self.root_path = 'manual.html'
html_filters.push 'lua/clean_html', 'lua/entries'
@ -13,5 +11,20 @@ module Docs
&copy; 1994&ndash;2015 Lua.org, PUC-Rio.<br>
Licensed under the MIT License.
HTML
version '5.1' do
self.release = '5.1'
self.base_url = 'http://www.lua.org/manual/5.1/'
end
version '5.2' do
self.release = '5.2'
self.base_url = 'http://www.lua.org/manual/5.2/'
end
version '5.3' do
self.release = '5.3'
self.base_url = 'http://www.lua.org/manual/5.3/'
end
end
end

Loading…
Cancel
Save