mirror of https://github.com/freeCodeCamp/devdocs
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.
25 lines
605 B
25 lines
605 B
module Docs
|
|
class Yarn < UrlScraper
|
|
self.type = 'yarn'
|
|
self.release = '1.1.0'
|
|
self.base_url = 'https://yarnpkg.com/en/docs/'
|
|
self.links = {
|
|
home: 'https://yarnpkg.com/',
|
|
code: 'https://github.com/yarnpkg/yarn'
|
|
}
|
|
|
|
html_filters.push 'yarn/entries', 'yarn/clean_html', 'title'
|
|
|
|
options[:root_title] = 'Yarn'
|
|
options[:trailing_slash] = false
|
|
|
|
options[:skip] = %w(nightly)
|
|
options[:skip_patterns] = [/\Aorg\//]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2016–2017 Yarn Contributors<br>
|
|
Licensed under the BSD License.
|
|
HTML
|
|
end
|
|
end
|