mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
35 lines
941 B
Ruby
35 lines
941 B
Ruby
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
|