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.
33 lines
647 B
33 lines
647 B
9 years ago
|
module Docs
|
||
|
class Cmake < UrlScraper
|
||
|
self.name = 'CMake'
|
||
|
self.slug = 'cmake'
|
||
|
self.type = 'cmake'
|
||
|
self.release = '3.5'
|
||
|
self.base_url = 'https://cmake.org/cmake/help/v3.5/'
|
||
|
|
||
|
options[:skip] = %w(
|
||
|
release/index.html
|
||
|
genindex.html
|
||
|
search.html
|
||
|
)
|
||
|
|
||
|
options[:only_patterns] = [
|
||
|
/manual/,
|
||
|
/command/,
|
||
|
/policy/,
|
||
|
/prop_/,
|
||
|
/variable/
|
||
|
]
|
||
|
|
||
|
options[:container] = '.body'
|
||
|
|
||
|
html_filters.push 'cmake/clean_html', 'cmake/entries'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2000–2016 Kitware, Inc.<br>
|
||
|
Licensed under the BSD 3-clause License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|