-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathchai.rb
31 lines (26 loc) · 815 Bytes
/
chai.rb
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
module Docs
class Chai < UrlScraper
self.name = 'Chai'
self.type = 'simple'
self.release = '5.1.1'
self.base_url = 'https://www.chaijs.com'
self.root_path = '/api/'
self.initial_paths = %w(/guide/installation/)
self.links = {
home: 'https://www.chaijs.com/',
code: 'https://github.com/chaijs/chai'
}
html_filters.push 'chai/entries', 'chai/clean_html'
options[:container] = '#content'
options[:trailing_slash] = true
options[:only_patterns] = [/\A\/guide/, /\A\/api/]
options[:skip] = %w(/api/test/ /guide/ /guide/resources/)
options[:attribution] = <<-HTML
© 2017 Chai.js Assertion Library<br>
Licensed under the MIT License.
HTML
def get_latest_version(opts)
get_npm_version('chai', opts)
end
end
end