-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathreact_bootstrap.rb
More file actions
35 lines (28 loc) · 941 Bytes
/
react_bootstrap.rb
File metadata and controls
35 lines (28 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module Docs
class ReactBootstrap < UrlScraper
self.name = 'React Bootstrap'
self.slug = 'react_bootstrap'
self.type = 'simple'
self.release = '2.7.2'
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