| 123456789101112131415161718192021 |
- module Docs
- class Jest < UrlScraper
- self.type = 'jest'
- self.release = '23.1.0'
- self.base_url = 'https://facebook.github.io/jest/docs/en/'
- self.root_path = 'getting-started.html'
- self.links = {
- home: 'https://facebook.github.io/jest/',
- code: 'https://github.com/facebook/jest'
- }
- html_filters.push 'jest/entries', 'jest/clean_html'
- options[:container] = '.docMainWrapper'
- options[:attribution] = <<-HTML
- © 2014–present Facebook Inc.<br>
- Licensed under the BSD License.
- HTML
- end
- end
|