rhack 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.md +4 -1
- data/ext/curb/curb_multi.c +1 -5
- data/lib/rhack/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzNmNWZmNGI4ZGFkMDQ0M2VlNjVlN2M3MDU2MWY0NDU2N2NjMmZhOQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTNlYzdjZjk3NDc4MjRjMTg3OWJmZWQxYjlkMWM3NTUxMmE4NWJiYg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjFkMTFhZDc2ZmJmODM3NjdlZjU5YjViNTYyMWQ2ZDQwOGMyMTQ3NThjM2Mw
|
10
|
+
NTUzMTdhYjUwOGZkYWMwMGE3NTBiMWM0Y2Q5OGNkOTVlMzhmYzFiM2QwZjc5
|
11
|
+
M2ExNWZjY2IyNzM1OTdlMTk2Njg2OWRjMTBmMjAwOTMwYWRkNjg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTI5OGViMzJlNjcyNjQyOGRjMzZiZDY2OWU5NTI5MjExMzY3MjVkMjA0MjFl
|
14
|
+
MzRjMjBiYTc0YTI5OTMxZWNhYjE5ZTViOTczZTE3MGVkNmQ2ZjA3MTJkODdl
|
15
|
+
MjE1ZDY0OTg1MWQzZmU2MTlmZmUyYTkxMmIyOGYyYzlkZmI0NzQ=
|
data/README.md
CHANGED
@@ -31,13 +31,16 @@ It's still randomly documented since it's just my working tool.
|
|
31
31
|
|
32
32
|
### CHANGES
|
33
33
|
|
34
|
-
##### Version 1.1.
|
34
|
+
##### Version 1.1.5
|
35
35
|
|
36
36
|
* ::Frame
|
37
37
|
* Moved `Curl.execute` from *initialize* to *on after request added*
|
38
|
+
* #initialize option :scouts aliased as :threads
|
38
39
|
|
39
40
|
* ::ScoutSquad
|
40
41
|
* Finally stabilized #next and #rand time management for parallel recursive execution
|
42
|
+
|
43
|
+
* Fixed freeing of Curl::Easy handlers in `curl_multi_free'
|
41
44
|
|
42
45
|
##### Version 1.1.3
|
43
46
|
|
data/ext/curb/curb_multi.c
CHANGED
@@ -178,11 +178,7 @@ static VALUE ruby_curl_multi_idle(VALUE self) {
|
|
178
178
|
|
179
179
|
Data_Get_Struct(self, ruby_curl_multi, rbcm);
|
180
180
|
|
181
|
-
|
182
|
-
return Qfalse;
|
183
|
-
} else {
|
184
|
-
return Qtrue;
|
185
|
-
}
|
181
|
+
return RHASH_LEN(rbcm->requests) ? Qfalse : Qtrue;
|
186
182
|
}
|
187
183
|
|
188
184
|
/*
|
data/lib/rhack/version.rb
CHANGED