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.
devdocs/lib/docs/scrapers/jq.rb

29 lines
727 B

module Docs
class Jq < UrlScraper
self.name = 'jq'
self.slug = 'jq'
self.type = 'jq'
self.release = '1.7'
self.links = {
home: 'https://jqlang.github.io/jq/'
}
self.base_url = "https://jqlang.github.io/jq/manual/v#{self.release}/index.html"
html_filters.push 'jq/entries', 'jq/clean_html'
options[:container] = 'main'
options[:skip_links] = true
options[:attribution] = <<-HTML
&copy; 2012 Stephen Dolan<br>
Licensed under the <a href="https://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>
HTML
def get_latest_version(opts)
get_latest_github_release('stedolan', 'jq', opts).split('-')[1]
end
end
end