| 1234567891011121314151617181920212223242526272829 |
- module Docs
- class Requirejs < UrlScraper
- self.name = 'RequireJS'
- self.type = 'requirejs'
- self.version = '2.1.4'
- self.base_url = 'http://requirejs.org/docs/'
- self.root_path = 'api.html'
- self.initial_paths = %w(
- optimization.html
- jquery.html
- node.html
- dojo.html
- commonjs.html
- plugins.html
- why.html
- whyamd.html)
- html_filters.push 'requirejs/clean_html', 'requirejs/entries'
- options[:container] = '#content'
- options[:follow_links] = false
- options[:only] = self.initial_paths
- options[:attribution] = <<-HTML
- © 2010–2014 The Dojo Foundation<br>
- Licensed under the MIT License.
- HTML
- end
- end
|