We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ff4ace + b38e396 commit c4c45f7Copy full SHA for c4c45f7
lib/docs/filters/ramda/clean_html.rb
@@ -11,7 +11,7 @@ def call
11
css('.card').each do |card|
12
title = card.at_css('h2')
13
added_in = card.at_css('small')
14
- added_in.parent = title
+ added_in.parent = title if added_in.present?
15
end
16
17
css('.params').each do |node|
lib/docs/scrapers/ramda.rb
@@ -1,8 +1,8 @@
1
module Docs
2
class Ramda < UrlScraper
3
self.type = 'ramda'
4
- self.release = '0.25.0'
5
- self.base_url = "http://ramdajs.com/#{release}/docs/"
+ self.release = '0.26.1'
+ self.base_url = "https://ramdajs.com/#{release}/docs/"
6
self.links = {
7
home: 'http://ramdajs.com/',
8
code: 'https://github.com/ramda/ramda/'
@@ -22,4 +22,3 @@ def get_latest_version(opts)
22
23
24
25
-
0 commit comments