| 1234567891011121314151617181920212223242526272829303132 |
- module Docs
- class Bun < UrlScraper
- self.name = 'Bun'
- self.type = 'simple'
- self.slug = 'bun'
- self.links = {
- home: 'https://leafletjs.com/',
- code: 'https://github.com/oven-sh/bun'
- }
- self.release = '1.3.0'
- self.base_url = "https://bun.com/docs/"
- self.root_path = 'installation'
- html_filters.push 'bun/clean_html', 'bun/entries'
- # https://bun.com/docs/project/licensing
- options[:attribution] = <<-HTML
- © bun.com, oven-sh, Jarred Sumner<br>
- Licensed under the MIT License.
- HTML
- options[:skip_patterns] = [/^project/]
- options[:fix_urls] = ->(url) do
- url.sub! %r{.md$}, ''
- url
- end
- def get_latest_version(opts)
- tags = get_github_tags('oven-sh', 'bun', opts)
- end
- end
- end
|