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.
19 lines
532 B
19 lines
532 B
module Docs
|
|
class Pony < UrlScraper
|
|
self.type = 'pony'
|
|
self.release = '0.25.0'
|
|
self.base_url = 'https://stdlib.ponylang.io/'
|
|
|
|
html_filters.push 'pony/container', 'pony/entries'
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2016-2018, The Pony Developers<br>
|
|
© 2014-2015, Causality Ltd.<br>
|
|
Licensed under the <a href="https://github.com/ponylang/ponyc/blob/master/LICENSE">BSD 2-Clause License</a>
|
|
HTML
|
|
|
|
options[:trailing_slash] = false
|
|
options[:skip_patterns] = [/src/]
|
|
end
|
|
end
|