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.
40 lines
1.1 KiB
40 lines
1.1 KiB
module Docs
|
|
class Cmake < UrlScraper
|
|
self.name = 'CMake'
|
|
self.type = 'sphinx_simple'
|
|
self.links = {
|
|
home: 'https://cmake.org/',
|
|
code: 'https://cmake.org/gitweb?p=cmake.git;a=summary'
|
|
}
|
|
|
|
html_filters.push 'cmake/clean_html', 'sphinx/clean_html', 'cmake/entries', 'title'
|
|
|
|
options[:container] = '.body'
|
|
options[:title] = false
|
|
options[:root_title] = 'CMake Reference Documentation'
|
|
options[:skip] = %w(release/index.html genindex.html search.html)
|
|
options[:skip_patterns] = [/\Agenerator/, /\Ainclude/, /\Arelease/]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2000–2016 Kitware, Inc.<br>
|
|
© 2000–2011 Insight Software Consortium<br>
|
|
Licensed under the BSD 3-clause License.
|
|
HTML
|
|
|
|
version '3.7' do
|
|
self.release = '3.7.1'
|
|
self.base_url = 'https://cmake.org/cmake/help/v3.7/'
|
|
end
|
|
|
|
version '3.6' do
|
|
self.release = '3.6.3'
|
|
self.base_url = 'https://cmake.org/cmake/help/v3.6/'
|
|
end
|
|
|
|
version '3.5' do
|
|
self.release = '3.5.2'
|
|
self.base_url = 'https://cmake.org/cmake/help/v3.5/'
|
|
end
|
|
end
|
|
end
|