module Docs
  class Yii < UrlScraper
    self.type = 'yii'
    self.release = '2.0.2'
    self.base_url = 'http://www.yiiframework.com/doc-2.0/'
    self.root_path = 'index.html'

    html_filters.push 'yii/clean_html', 'yii/entries'

    options[:container] = 'div[role=main]'
    options[:skip_patterns] = [/\Ayii-apidoc/]

    options[:attribution] = <<-HTML
      &copy; 2008&ndash;2015 by Yii Software LLC<br>
      Licensed under the three clause BSD license.
    HTML
  end
end