You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/lib/docs/scrapers/homebrew.rb

25 lines
696 B

module Docs
class Homebrew < UrlScraper
self.name = 'Homebrew'
self.type = 'simple'
self.release = '1.4.2'
self.base_url = 'https://docs.brew.sh/'
self.links = {
home: 'https://brew.sh',
code: 'https://github.com/Homebrew/brew'
}
html_filters.push 'homebrew/entries', 'homebrew/clean_html'
options[:container] = ->(filter) { filter.root_page? ? '#home' : '#page' }
options[:skip_patterns] = [/maintainer/i, /core\-contributor/i]
options[:skip] = %w(Kickstarter-Supporters.html)
options[:attribution] = <<-HTML
&copy; 2009&ndash;present Homebrew contributors<br>
Licensed under the BSD 2-Clause License.
HTML
end
end