| 1234567891011121314151617181920212223242526 |
- module Docs
- class Ramda < UrlScraper
- self.type = 'ramda'
- self.links = {
- home: 'http://ramdajs.com/',
- code: 'https://github.com/ramda/ramda/'
- }
- html_filters.push 'ramda/entries', 'ramda/clean_html', 'title'
- options[:title] = 'Ramda'
- options[:attribution] = <<-HTML
- © 2013–2025 Scott Sauyet and Michael Hurley<br>
- Licensed under the MIT License.
- HTML
- version do
- self.release = '0.31.3'
- self.base_url = "https://ramdajs.com/#{release}/docs/"
- end
- def get_latest_version(opts)
- get_npm_version('ramda', opts)
- end
- end
- end
|