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.
44 lines
990 B
44 lines
990 B
module Docs
|
|
class Lua < UrlScraper
|
|
self.type = 'lua'
|
|
self.root_path = 'manual.html'
|
|
self.links = {
|
|
home: 'https://www.lua.org/'
|
|
}
|
|
|
|
html_filters.push 'lua/clean_html', 'lua/entries'
|
|
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 1994–2020 Lua.org, PUC-Rio.<br>
|
|
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.6'
|
|
self.base_url = 'https://www.lua.org/manual/5.3/'
|
|
end
|
|
|
|
version '5.2' do
|
|
self.release = '5.2.4'
|
|
self.base_url = 'https://www.lua.org/manual/5.2/'
|
|
end
|
|
|
|
version '5.1' do
|
|
self.release = '5.1.5'
|
|
self.base_url = 'https://www.lua.org/manual/5.1/'
|
|
end
|
|
|
|
def get_latest_version(opts)
|
|
doc = fetch_doc('https://www.lua.org/manual/', opts)
|
|
doc.at_css('p.menubar > a').content
|
|
end
|
|
end
|
|
end
|