mirror of https://github.com/freeCodeCamp/devdocs
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.
22 lines
622 B
22 lines
622 B
9 years ago
|
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
|
||
|
© Padrino contributors<br>
|
||
|
Licensed under the Creative Commons Attribution License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|