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

28 lines
720 B

module Docs
class Chai < UrlScraper
self.name = 'Chai'
self.type = 'chai'
self.release = '3.4.2'
self.base_url = 'http://chaijs.com'
self.root_path = '/api/'
self.initial_paths = %w(/guide/installation/)
self.links = {
home: 'http://chaijs.com/',
code: 'https://github.com/chaijs/chai'
}
html_filters.push 'chai/entries', 'chai/clean_html'
options[:container] = '#content'
options[:trailing_slash] = true
options[:only_patterns] = [/\A\/guide/, /\A\/api/]
options[:skip] = %w(/api/test/ /guide/ /guide/resources/)
options[:attribution] = <<-HTML
&copy; 2011&ndash;2015 Jake Luer<br>
Licensed under the MIT License.
HTML
end
end