mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
42 lines
1 KiB
Ruby
42 lines
1 KiB
Ruby
module Docs
|
|
class Lodash < UrlScraper
|
|
self.name = 'lodash'
|
|
self.slug = 'lodash'
|
|
self.type = 'simple'
|
|
self.links = {
|
|
home: 'https://lodash.com/',
|
|
code: 'https://github.com/lodash/lodash/'
|
|
}
|
|
|
|
html_filters.push 'lodash/entries', 'lodash/clean_html', 'title'
|
|
|
|
options[:title] = 'lodash'
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© JS Foundation and other contributors<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
version '4' do
|
|
self.release = '4.17.10'
|
|
self.base_url = "https://lodash.com/docs/#{release}"
|
|
end
|
|
|
|
version '3' do
|
|
self.release = '3.10.1'
|
|
self.base_url = "https://lodash.com/docs/#{release}"
|
|
end
|
|
|
|
version '2' do
|
|
self.release = '2.4.2'
|
|
self.base_url = "https://lodash.com/docs/#{release}"
|
|
end
|
|
|
|
def get_latest_version(options, &block)
|
|
fetch_doc('https://lodash.com/docs/', options) do |doc|
|
|
block.call doc.at_css('#version > option[selected]').content
|
|
end
|
|
end
|
|
end
|
|
end
|