| 123456789101112131415161718192021222324252627282930313233343536373839 |
- module Docs
- class Vertx < UrlScraper
- self.type = 'vertx'
- self.links = {
- home: 'http://vertx.io',
- code: 'https://github.com/eclipse-vertx/vert.x'
- }
- html_filters.push 'vertx/entries', 'vertx/clean_html'
- options[:attribution] = <<-HTML
- © 2025 Eclipse Vert.x™</br>
- Eclipse Vert.x™ is open source and dual-licensed under the Eclipse Public License 2.0 and the Apache License 2.0.</br>
- Website design by Michel Krämer.
- HTML
- options[:skip_patterns] = [
- /api/,
- /5.0.0/,
- /apidocs/,
- /blog/,
- ]
- version '5.0.0' do
- self.release = '5.0.0'
- self.base_url = "https://vertx.io/docs/"
- end
- version '4.5.15' do
- self.release = '4.5.15'
- self.base_url = "https://vertx.io/docs/#{self.version}"
- end
- version '3.9.16' do
- self.release = '4.5.15'
- self.base_url = "https://vertx.io/docs/#{self.version}"
- end
- end
- end
|