| 12345678910111213141516171819202122232425 |
- module Docs
- class Zig < UrlScraper
- self.name = 'Zig'
- self.type = 'simple'
- self.release = '0.11.0'
- self.base_url = "https://ziglang.org/documentation/#{self.release}/"
- self.links = {
- home: 'https://ziglang.org/',
- code: 'https://github.com/ziglang/zig'
- }
- html_filters.push 'zig/entries', 'zig/clean_html'
- options[:follow_links] = false
- options[:attribution] = <<-HTML
- © 2015–2023, Zig contributors<br>
- Licensed under the MIT License.
- HTML
- def get_latest_version(opts)
- tags = get_github_tags('ziglang', 'zig', opts)
- tags[0]['name']
- end
- end
- end
|