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/cakephp.rb

27 lines
712 B

module Docs
class Cakephp < FileScraper
self.name = 'CakePHP'
self.type = 'cakephp'
self.version = '3.1'
self.dir = ''
self.base_url = "http://api.cakephp.org/#{version}/"
self.root_path = 'index.html'
self.links = {
home: 'http://cakephp.org/',
code: 'https://github.com/cakephp/cakephp'
}
html_filters.push 'cakephp/clean_html', 'cakephp/entries'
options[:container] = '#right.columns.nine'
# CakePHP docs include full source code. Ignore it.
options[:skip_patterns] = [/\Asource-/]
options[:attribution] = <<-HTML
&copy; 2005&ndash;2015 The Cake Software Foundation, Inc.<br>
Licensed under the MIT License.
HTML
end
end