| 12345678910111213141516171819 |
- module Docs
- class Bower < UrlScraper
- self.name = 'Bower'
- self.type = 'bower'
- self.version = '1.3.12'
- self.base_url = 'http://bower.io/docs/'
- self.root_path = 'api'
- html_filters.push 'bower/clean_html', 'bower/entries'
- options[:trailing_slash] = false
- options[:skip] = %w(tools about)
- options[:attribution] = <<-HTML
- © 2014 Bower contributors<br>
- Licensed under the Creative Commons Attribution License.
- HTML
- end
- end
|