curb 0.8.7 → 0.8.8
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 +4 -4
- data/ext/curb.h +3 -3
- data/ext/curb_easy.c +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b76360d30b92902398314af1674ec02db1ad9f74
|
|
4
|
+
data.tar.gz: 05ae393053e953fa773dcca22b50d18252c90244
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8777897444b5ad6dad48f0a56d78d9826d96a4e3cd3cd53d318c3f733d0242f8b7ece9600c6aa06f53125c37f4f7c144bd82da62f9619a0a94b560f1546617b
|
|
7
|
+
data.tar.gz: 77a42a5ad6b26233a3c7917c945d694d560474c54eab71023439ad840ef5af1fd0f5037d6e4dcae680273785e8870ab952d9dab6955c11b127533e2ef60b0adc
|
data/ext/curb.h
CHANGED
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
#include "curb_macros.h"
|
|
21
21
|
|
|
22
22
|
// These should be managed from the Rake 'release' task.
|
|
23
|
-
#define CURB_VERSION "0.8.
|
|
24
|
-
#define CURB_VER_NUM
|
|
23
|
+
#define CURB_VERSION "0.8.8"
|
|
24
|
+
#define CURB_VER_NUM 808
|
|
25
25
|
#define CURB_VER_MAJ 0
|
|
26
26
|
#define CURB_VER_MIN 8
|
|
27
|
-
#define CURB_VER_MIC
|
|
27
|
+
#define CURB_VER_MIC 8
|
|
28
28
|
#define CURB_VER_PATCH 0
|
|
29
29
|
|
|
30
30
|
|
data/ext/curb_easy.c
CHANGED
|
@@ -3125,6 +3125,7 @@ static VALUE ruby_curl_easy_set_opt(VALUE self, VALUE opt, VALUE val) {
|
|
|
3125
3125
|
case CURLOPT_NOPROGRESS:
|
|
3126
3126
|
case CURLOPT_NOSIGNAL:
|
|
3127
3127
|
case CURLOPT_HTTPGET:
|
|
3128
|
+
break;
|
|
3128
3129
|
case CURLOPT_POST: {
|
|
3129
3130
|
curl_easy_setopt(rbce->curl, CURLOPT_POST, rb_type(val) == T_TRUE);
|
|
3130
3131
|
} break;
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: curb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ross Bamford
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-04-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Curb (probably CUrl-RuBy or something) provides Ruby-language bindings
|
|
15
15
|
for the libcurl(3), a fully-featured client-side URL transfer library. cURL and
|