mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
31 lines
870 B
Ruby
31 lines
870 B
Ruby
module Docs
|
|
class Padrino < UrlScraper
|
|
self.slug = 'padrino'
|
|
self.type = 'rubydoc'
|
|
self.release = '0.15'
|
|
self.base_url = 'https://www.rubydoc.info/github/padrino/padrino-framework/'
|
|
self.root_path = 'file/README.rdoc'
|
|
self.initial_paths = %w(index2)
|
|
self.links = {
|
|
home: 'http://padrinorb.com/',
|
|
code: 'https://github.com/padrino/padrino-framework'
|
|
}
|
|
|
|
html_filters.push 'padrino/clean_html', 'padrino/entries'
|
|
|
|
options[:container] = ->(filter) { filter.root_page? ? '#filecontents' : '#content' }
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2010–2020 Padrino<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
stub 'index2' do
|
|
request_one(url_for('index')).body
|
|
end
|
|
|
|
def get_latest_version(opts)
|
|
get_github_tags('padrino', 'padrino-framework', opts)[0]['name']
|
|
end
|
|
end
|
|
end
|