angular.rb 722 B

12345678910111213141516171819
  1. module Docs
  2. class Angular < UrlScraper
  3. # This scraper is currently broken; the problem being that Angular's
  4. # documentation isn't available as static pages. I will try to restore it
  5. # once Angular 1.2.0 is released.
  6. #
  7. # In the past it used static-ng-doc by Sal Lara (github.com/natchiketa/static-ng-doc)
  8. # to scrape the doc's HTML partials (e.g. docs.angularjs.org/partials/api/ng.html).
  9. #
  10. # If you want to help this is what I need: a static page with links to each
  11. # HTML partial. Or better yet, a static version of Angular's documentation.
  12. self.name = 'Angular.js'
  13. self.slug = 'angular'
  14. self.type = 'angular'
  15. self.version = '1.0.7'
  16. self.base_url = ''
  17. end
  18. end