| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- module Docs
- class Fish < UrlScraper
- self.name = 'Fish'
- self.type = 'simple'
- self.root_path = 'index.html'
- self.links = {
- home: 'https://fishshell.com/',
- code: 'https://github.com/fish-shell/fish-shell'
- }
- options[:skip] = %w(design.html license.html)
- # https://fishshell.com/docs/current/license.html
- options[:attribution] = <<-HTML
- © 2022 fish-shell developers<br>
- Licensed under the GNU General Public License, version 2.
- HTML
- version '3.5' do
- self.release = '3.5.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- options[:skip].concat %w(genindex.html relnotes.html)
- html_filters.push 'sphinx/clean_html', 'fish/clean_html_sphinx', 'fish/entries_sphinx'
- end
- version '3.4' do
- self.release = '3.4.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- options[:skip].concat %w(genindex.html relnotes.html)
- html_filters.push 'sphinx/clean_html', 'fish/clean_html_sphinx', 'fish/entries_sphinx'
- end
- version '3.3' do
- self.release = '3.3.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- options[:skip].concat %w(genindex.html relnotes.html)
- html_filters.push 'sphinx/clean_html', 'fish/clean_html_sphinx', 'fish/entries_sphinx'
- end
- version '3.2' do
- self.release = '3.2.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- options[:skip].concat %w(genindex.html relnotes.html)
- html_filters.push 'sphinx/clean_html', 'fish/clean_html_sphinx', 'fish/entries_sphinx'
- end
- version '3.1' do
- self.release = '3.1.2'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- options[:skip].concat %w(genindex.html commands.html)
- html_filters.push 'sphinx/clean_html', 'fish/clean_html_sphinx', 'fish/entries_sphinx'
- end
- version '3.0' do
- self.release = '3.0.1'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.7' do
- self.release = '2.7.1'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.6' do
- self.release = '2.6.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.5' do
- self.release = '2.5.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.4' do
- self.release = '2.4.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.3' do
- self.release = '2.3.1'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- version '2.2' do
- self.release = '2.2.0'
- self.base_url = "https://fishshell.com/docs/#{version}/"
- html_filters.push 'fish/clean_html_custom', 'fish/entries_custom'
- end
- def get_latest_version(opts)
- get_latest_github_release('fish-shell', 'fish-shell', opts)
- end
- end
- end
|