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

24 lines
541 B

module Docs
class Haxe < UrlScraper
self.name = 'Haxe'
self.type = 'haxe'
self.release = '3.2.0'
self.base_url = 'http://api.haxe.org'
self.links = {
home: 'http://haxe.org',
code: 'https://github.com/HaxeFoundation/haxe'
}
html_filters.push 'haxe/clean_html', 'haxe/entries'
options[:container] = '.span9'
options[:title] = nil
options[:root_title] = 'Haxe'
options[:attribution] = <<-HTML
&copy; HaxeFoundation<br>
Licensed under a MIT license.
HTML
end
end