yii.rb 401 B

123456789101112131415
  1. module Docs
  2. class Yii < UrlScraper
  3. self.type = 'yii'
  4. self.version = '1.1.14'
  5. self.base_url = 'http://www.yiiframework.com/doc/api/1.1/'
  6. html_filters.push 'yii/clean_html', 'yii/entries'
  7. options[:container] = '.grid_9'
  8. options[:attribution] = <<-HTML
  9. &copy; 2008&ndash;2014 by Yii Software LLC<br>
  10. Licensed under the three clause BSD license.
  11. HTML
  12. end
  13. end