| 123456789101112131415161718192021 |
- module Docs
- class Jasmine < UrlScraper
- self.type = 'jasmine'
- self.release = '3.0.0'
- self.base_url = 'https://jasmine.github.io/api/3.0/'
- self.root_path = 'index.html'
- self.links = {
- home: 'https://jasmine.github.io/',
- code: 'https://github.com/jasmine/jasmine'
- }
- html_filters.push 'jasmine/clean_html', 'jasmine/entries'
- options[:container] = '.main-content'
- options[:attribution] = <<-HTML
- © 2008–2017 Pivotal Labs<br>
- Licensed under the MIT License.
- HTML
- end
- end
|