haxe.rb 541 B

1234567891011121314151617181920212223
  1. module Docs
  2. class Haxe < UrlScraper
  3. self.name = 'Haxe'
  4. self.type = 'haxe'
  5. self.release = '3.2.0'
  6. self.base_url = 'http://api.haxe.org'
  7. self.links = {
  8. home: 'http://haxe.org',
  9. code: 'https://github.com/HaxeFoundation/haxe'
  10. }
  11. html_filters.push 'haxe/clean_html', 'haxe/entries'
  12. options[:container] = '.span9'
  13. options[:title] = nil
  14. options[:root_title] = 'Haxe'
  15. options[:attribution] = <<-HTML
  16. &copy; HaxeFoundation<br>
  17. Licensed under a MIT license.
  18. HTML
  19. end
  20. end