moment.rb 549 B

1234567891011121314151617181920
  1. module Docs
  2. class Moment < UrlScraper
  3. self.name = 'Moment.js'
  4. self.slug = 'moment'
  5. self.type = 'moment'
  6. self.release = '2.11.1'
  7. self.base_url = 'http://momentjs.com/docs/'
  8. html_filters.push 'moment/clean_html', 'moment/entries', 'title'
  9. options[:title] = 'Moment.js'
  10. options[:container] = '.docs-content'
  11. options[:skip_links] = true
  12. options[:attribution] = <<-HTML
  13. &copy; 2011&ndash;2016 Tim Wood, Iskren Chernev, Moment.js contributors<br>
  14. Licensed under the MIT License.
  15. HTML
  16. end
  17. end