-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Copy pathcypress.rb
40 lines (33 loc) · 1 KB
/
cypress.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
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
module Docs
class Cypress < UrlScraper
self.name = 'Cypress'
self.type = 'cypress'
self.release = '13.15.0'
self.base_url = 'https://docs.cypress.io'
self.root_path = '/api/table-of-contents.html'
self.links = {
home: 'https://www.cypress.io/',
code: 'https://github.com/cypress-io/cypress',
}
html_filters.push 'cypress/entries', 'cypress/clean_html'
options[:container] = 'article'
options[:max_image_size] = 300_000
options[:include_default_entry] = true
options[:skip_patterns] = [
/examples\//,
/guides/
]
options[:skip_link] = ->(link) {
href = link.attr(:href)
href.nil? ? true : EntriesFilter::SECTIONS.none? { |section| href.match?("/#{section}/") }
}
options[:attribution] = <<-HTML
© 2017 Cypress.io<br>
Licensed under the MIT License.
HTML
def get_latest_version(opts)
get_latest_github_release('cypress-io', 'cypress', opts)
end
end
end