mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
629 B
25 lines
629 B
module Docs
|
|
class Enzyme < UrlScraper
|
|
self.type = 'simple'
|
|
self.release = '3.11.0'
|
|
self.base_url = 'https://enzymejs.github.io/enzyme/'
|
|
self.root_path = 'index.html'
|
|
self.links = {
|
|
code: 'https://github.com/airbnb/enzyme'
|
|
}
|
|
|
|
html_filters.push 'enzyme/entries', 'enzyme/clean_html'
|
|
|
|
options[:skip] = %w(CHANGELOG.html docs/future.html docs/guides.html docs/api/ CONTRIBUTING.html)
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2015 Airbnb, Inc.<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
|
|
def get_latest_version(opts)
|
|
get_npm_version('enzyme', opts)
|
|
end
|
|
end
|
|
end
|