| 123456789101112131415161718192021222324 |
- module Docs
- class Redux < UrlScraper
- self.type = 'redux'
- self.release = '3.6.0'
- self.base_url = 'http://redux.js.org/docs/'
- self.links = {
- home: 'http://redux.js.org/',
- code: 'https://github.com/reactjs/redux/'
- }
- html_filters.push 'redux/entries', 'redux/clean_html'
- options[:skip] = %w(Feedback.html)
- options[:attribution] = <<-HTML
- © 2015–2016 Dan Abramov<br>
- Licensed under the MIT License.
- HTML
- stub '' do
- request_one('http://redux.js.org/index.html').body
- end
- end
- end
|