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.
16 lines
401 B
16 lines
401 B
module Docs
|
|
class Yii < UrlScraper
|
|
self.type = 'yii'
|
|
self.version = '1.1.14'
|
|
self.base_url = 'http://www.yiiframework.com/doc/api/1.1/'
|
|
|
|
html_filters.push 'yii/clean_html', 'yii/entries'
|
|
|
|
options[:container] = '.grid_9'
|
|
options[:attribution] = <<-HTML
|
|
© 2008–2014 by Yii Software LLC<br>
|
|
Licensed under the three clause BSD license.
|
|
HTML
|
|
end
|
|
end
|