| 1234567891011121314151617181920212223242526272829303132333435 |
- module Docs
- class ReactBootstrap < UrlScraper
- self.name = 'React Bootstrap'
- self.slug = 'react_bootstrap'
- self.type = 'simple'
- self.release = '1.5.0'
- self.base_url = 'https://react-bootstrap.github.io/'
- self.links = {
- home: 'https://react-bootstrap.github.io',
- code: 'https://github.com/react-bootstrap/react-bootstrap'
- }
- html_filters.push 'react_bootstrap/entries', 'react_bootstrap/clean_html'
- options[:skip] = %w(
- react-overlays/
- )
- options[:replace_paths] = {
- }
- options[:trailing_slash] = true
- options[:attribution] = <<-HTML
- © 2014–present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff<br>
- Licensed under the MIT License (MIT).
- HTML
- def get_latest_version(opts)
- doc = fetch_doc('https://react-bootstrap.github.io/', opts)
- doc.at_css('#t-version>a').content.split()[0].strip[1..-1]
- end
- end
- end
|