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

14 lines
314 B

module Docs
class Pony < UrlScraper
self.type = 'pony'
self.release = '0.25.0'
6 years ago
self.base_url = 'https://stdlib.ponylang.io/'
html_filters.push 'pony/container', 'pony/entries'
options[:attribution] = "Me"
options[:trailing_slash] = false
options[:skip_patterns] = [/src/]
end
end