1
0

pony.rb 361 B

12345678910111213141516
  1. module Docs
  2. class Pony < UrlScraper
  3. self.type = 'pony'
  4. self.release = '0.25.0'
  5. self.base_url = 'https://stdlib.ponylang.io/'
  6. html_filters.push 'pony/container', 'pony/entries'
  7. options[:attribution] = <<-HTML
  8. &copy; 2018 Pony Developers
  9. HTML
  10. options[:trailing_slash] = false
  11. options[:skip_patterns] = [/src/]
  12. end
  13. end