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

25 lines
658 B

module Docs
class Matplotlib < FileScraper
self.name = 'Matplotlib'
self.type = 'sphinx'
self.root_path = 'index.html'
self.release = "1.5.1"
self.links = {
home: 'http://matplotlib.org/',
code: 'https://github.com/matplotlib/matplotlib'
}
html_filters.push 'matplotlib/entries', 'matplotlib/clean_html'
options[:container] = '.body'
options[:attribution] = <<-HTML
&copy; Matplotlib Development Team <br>
Licensed under the BSD License.
HTML
self.dir = '~/workspace/tmp/matplotlib/matplotlib.github.com-master/1.5.1/api/'
# self.base_url = 'http://matplotlib.org/api/'
end
end