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

22 lines
622 B

module Docs
class Padrino < UrlScraper
self.name = 'padrino'
self.slug = 'padrino'
self.type = 'ruby'
self.version = 'master'
self.release = '0.13.2'
self.base_url = 'http://www.rubydoc.info/github/padrino/padrino-framework'
self.links = {
home: 'http://padrinorb.com/',
code: 'https://github.com/padrino/padrino-framework'
}
html_filters.push 'padrino/clean_html', 'padrino/entries'
options[:attribution] = <<-HTML
&copy; Padrino contributors<br>
Licensed under the Creative Commons Attribution License.
HTML
end
end