q.rb 609 B

1234567891011121314151617181920212223
  1. module Docs
  2. class Q < Github
  3. self.name = 'Q'
  4. self.release = '1.4.1'
  5. self.base_url = 'https://github.com/kriskowal/q/wiki/'
  6. self.root_path = 'API-Reference'
  7. self.links = {
  8. home: 'http://documentup.com/kriskowal/q/',
  9. code: 'https://github.com/kriskowal/q'
  10. }
  11. html_filters.push 'q/entries', 'title'
  12. options[:container] = '.markdown-body'
  13. options[:title] = 'Q'
  14. options[:skip_links] = true
  15. options[:attribution] = <<-HTML
  16. &copy; 2009&ndash;2015 Kristopher Michael Kowal and contributors<br>
  17. Licensed under the MIT License.
  18. HTML
  19. end
  20. end