yii.rb 485 B

123456789101112131415161718
  1. module Docs
  2. class Yii < UrlScraper
  3. self.type = 'yii'
  4. self.version = '2.0.2'
  5. self.base_url = 'http://www.yiiframework.com/doc-2.0/'
  6. self.root_path = 'index.html'
  7. html_filters.push 'yii/clean_html', 'yii/entries'
  8. options[:container] = 'div[role=main]'
  9. options[:skip_patterns] = [/\Ayii-apidoc/]
  10. options[:attribution] = <<-HTML
  11. &copy; 2008&ndash;2015 by Yii Software LLC<br>
  12. Licensed under the three clause BSD license.
  13. HTML
  14. end
  15. end