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
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License
HTML
options[:trailing_slash] = false
options[:skip_patterns] = [/src/]
end
end