matplotlib.rb 658 B

123456789101112131415161718192021222324
  1. module Docs
  2. class Matplotlib < FileScraper
  3. self.name = 'Matplotlib'
  4. self.type = 'sphinx'
  5. self.root_path = 'index.html'
  6. self.release = "1.5.1"
  7. self.links = {
  8. home: 'http://matplotlib.org/',
  9. code: 'https://github.com/matplotlib/matplotlib'
  10. }
  11. html_filters.push 'matplotlib/entries', 'matplotlib/clean_html'
  12. options[:container] = '.body'
  13. options[:attribution] = <<-HTML
  14. &copy; Matplotlib Development Team <br>
  15. Licensed under the BSD License.
  16. HTML
  17. self.dir = '~/workspace/tmp/matplotlib/matplotlib.github.com-master/1.5.1/api/'
  18. # self.base_url = 'http://matplotlib.org/api/'
  19. end
  20. end