| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- module Docs
- class Groovy < UrlScraper
- self.type = 'groovy'
- self.root_path = 'overview-summary.html'
- self.links = {
- home: 'https://groovy-lang.org/',
- code: 'https://github.com/apache/groovy'
- }
- html_filters.push 'groovy/clean_html', 'groovy/entries'
- options[:skip] = %w(
- index-all.html
- deprecated-list.html
- help-doc.html
- )
- options[:skip_patterns] = [
- /\Aindex.html/
- ]
- options[:attribution] = <<-HTML
- © 2003-2020 The Apache Software Foundation<br>
- Licensed under the Apache license.
- HTML
- version '3.0' do
- self.release = '3.0.9'
- self.base_url = "https://docs.groovy-lang.org/#{self.release}/html/gapi/"
- end
- version '2.5' do
- self.release = '2.5.14'
- self.base_url = "https://docs.groovy-lang.org/#{self.release}/html/gapi/"
- end
- version '2.4' do
- self.release = '2.4.21'
- self.base_url = "https://docs.groovy-lang.org/#{self.release}/html/gapi/"
- end
- def get_latest_version(opts)
- doc = fetch_doc('https://groovy.apache.org/download.html', opts)
- doc.at_css('#big-download-button').content.split(' ').last
- end
- end
- end
|