| 1234567891011121314151617181920212223242526272829 |
- module Docs
- class Jsdoc < UrlScraper
- self.name = 'JSDoc'
- self.type = 'simple'
- self.release = '3.5.5'
- self.base_url = 'http://usejsdoc.org/'
- self.root_path = 'index.html'
- self.links = {
- home: 'http://usejsdoc.org/',
- code: 'https://github.com/jsdoc3/jsdoc'
- }
- html_filters.push 'jsdoc/clean_html', 'jsdoc/entries'
- options[:trailing_slash] = false
- options[:container] = 'article'
- options[:skip] = [
- 'about-license-jsdoc3.html'
- ]
- options[:attribution] = <<-HTML
- © 2011–2017 the contributors to the JSDoc 3 documentation project<br>
- Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
- HTML
- def get_latest_version(opts)
- get_latest_github_release('jsdoc3', 'jsdoc', opts)
- end
- end
- end
|