mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
55 lines
1.3 KiB
Ruby
55 lines
1.3 KiB
Ruby
module Docs
|
|
class Codeigniter < UrlScraper
|
|
self.name = 'CodeIgniter'
|
|
self.type = 'sphinx'
|
|
self.root_path = 'index.html'
|
|
self.links = {
|
|
home: 'https://codeigniter.com/',
|
|
code: 'https://github.com/bcit-ci/CodeIgniter'
|
|
}
|
|
|
|
html_filters.push 'codeigniter/entries', 'sphinx/clean_html'
|
|
|
|
options[:skip] = %w(
|
|
license.html
|
|
changelog.html
|
|
DCO.html
|
|
general/welcome.html
|
|
general/requirements.html
|
|
general/credits.html
|
|
libraries/index.html
|
|
helpers/index.html
|
|
)
|
|
|
|
options[:skip_patterns] = [
|
|
/\Acontributing/,
|
|
/\Adocumentation/,
|
|
/\Achangelogs/,
|
|
/\Ainstallation\/upgrade/
|
|
]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2014–2021 British Columbia Institute of Technology<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
version '4' do
|
|
self.release = '4.1.5'
|
|
self.base_url = 'https://codeigniter.com/user_guide/'
|
|
|
|
options[:container] = '.document > div'
|
|
end
|
|
|
|
version '3' do
|
|
self.release = '3.1.8'
|
|
self.base_url = 'https://codeigniter.com/userguide3/'
|
|
|
|
options[:container] = '.document'
|
|
end
|
|
|
|
def get_latest_version(opts)
|
|
tags = get_github_tags('codeigniter4', 'codeigniter4', opts)
|
|
tags[0]['name'][1..-1]
|
|
end
|
|
end
|
|
end
|