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

20 lines
515 B

11 years ago
module Docs
class Coffeescript < UrlScraper
self.name = 'CoffeeScript'
self.type = 'coffeescript'
self.version = '1.9.2'
11 years ago
self.base_url = 'http://coffeescript.org'
html_filters.push 'coffeescript/clean_html', 'coffeescript/entries', 'title'
options[:title] = 'CoffeeScript'
options[:container] = '.container'
options[:skip_links] = true
11 years ago
options[:attribution] = <<-HTML
&copy; 2009&ndash;2015 Jeremy Ashkenas<br>
11 years ago
Licensed under the MIT License.
HTML
end
end