minitest.rb 682 B

12345678910111213141516171819202122232425
  1. module Docs
  2. class Minitest < Rdoc
  3. # Instructions:
  4. # 1. Run "gem update rdoc hoe"
  5. # 2. Download the source code at https://github.com/seattlerb/minitest
  6. # 3. Run "rake docs" (in the Minitest directory)
  7. # 4. Copy the "docs" directory to "docs/minitest"
  8. self.name = 'Ruby / Minitest'
  9. self.slug = 'minitest'
  10. self.release = '5.11.3'
  11. self.links = {
  12. code: 'https://github.com/seattlerb/minitest'
  13. }
  14. html_filters.replace 'rdoc/entries', 'minitest/entries'
  15. options[:root_title] = 'Minitest'
  16. options[:attribution] = <<-HTML
  17. &copy; Ryan Davis, seattle.rb<br>
  18. Licensed under the MIT License.
  19. HTML
  20. end
  21. end