ovirt-engine-sdk 4.0.4 → 4.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5007bb4c6d2b5ef74422826c4736c1b1fc1df85a
4
- data.tar.gz: fb3d4d54c061aec70bc4e3613dafcfc1ac876c43
3
+ metadata.gz: 5fa8b2c41d6e4de3707932c34fb215d2991894ac
4
+ data.tar.gz: a5d2dc254baded75ff8c10dd658d261c1e84a835
5
5
  SHA512:
6
- metadata.gz: 6eceab9c9367b1d5922d1f329fee2019ce0487f432d9a2a520d4298dcb3168961bc8e2fe5f3c182c18d3e773e65fd74a276c71726825696ad340ccd1372dbe5a
7
- data.tar.gz: d0020333f0884ce7ae8f157190e067f673dcabc2f5567dde0d2ff152049dd9cf74d55b94bc992813a71bc71f3184f46a452ee7b09b8d7195441b2a40638f1e01
6
+ metadata.gz: 53fc1b7b12b9a89fbc48831cd817e2d6163057bf569b96234c716cb980803092982acb86a49b991d3bf6c54fb57190568000d4c1fb193435b5c0c5786ba99392
7
+ data.tar.gz: c5a1888b7aa6bd2334ff1524a29a7d2978e519c50aa86e67807bd24ac21a700582d3e3a7ca3293f45360d918f82659a9fe9a5a00a78bbc44ad19918eaa2df0af
data/CHANGES.adoc CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  This document describes the relevant changes between releases of the SDK.
4
4
 
5
- == 4.0.4 / Oct 7 2016
5
+ == 4.0.5 / Oct 7 2016
6
6
 
7
7
  Bug Fixes:
8
8
 
@@ -29,6 +29,9 @@ limitations under the License.
29
29
  #include "ov_http_request.h"
30
30
  #include "ov_http_response.h"
31
31
 
32
+ /* Class: */
33
+ VALUE ov_http_client_class;
34
+
32
35
  /* Symbols: */
33
36
  static VALUE CA_FILE_SYMBOL;
34
37
  static VALUE COMPRESS_SYMBOL;
@@ -17,8 +17,8 @@ limitations under the License.
17
17
  #ifndef __OV_HTTP_CLIENT_H__
18
18
  #define __OV_HTTP_CLIENT_H__
19
19
 
20
- /* Classes: */
21
- VALUE ov_http_client_class;
20
+ /* Class: */
21
+ extern VALUE ov_http_client_class;
22
22
 
23
23
  /* Initialization function: */
24
24
  extern void ov_http_client_define(void);
@@ -20,6 +20,15 @@ limitations under the License.
20
20
  #include "ov_error.h"
21
21
  #include "ov_http_request.h"
22
22
 
23
+ /* Class: */
24
+ VALUE ov_http_request_class;
25
+
26
+ /* Symbols for HTTP methods: */
27
+ VALUE GET_SYMBOL;
28
+ VALUE POST_SYMBOL;
29
+ VALUE PUT_SYMBOL;
30
+ VALUE DELETE_SYMBOL;
31
+
23
32
  /* Symbols for the attributes: */
24
33
  static VALUE METHOD_SYMBOL;
25
34
  static VALUE URL_SYMBOL;
@@ -18,13 +18,13 @@ limitations under the License.
18
18
  #define __OV_HTTP_REQUEST_H__
19
19
 
20
20
  /* Class: */
21
- VALUE ov_http_request_class;
21
+ extern VALUE ov_http_request_class;
22
22
 
23
23
  /* Symbols for HTTP methods: */
24
- VALUE GET_SYMBOL;
25
- VALUE POST_SYMBOL;
26
- VALUE PUT_SYMBOL;
27
- VALUE DELETE_SYMBOL;
24
+ extern VALUE GET_SYMBOL;
25
+ extern VALUE POST_SYMBOL;
26
+ extern VALUE PUT_SYMBOL;
27
+ extern VALUE DELETE_SYMBOL;
28
28
 
29
29
  /* Content: */
30
30
  typedef struct {
@@ -20,6 +20,9 @@ limitations under the License.
20
20
  #include "ov_error.h"
21
21
  #include "ov_http_response.h"
22
22
 
23
+ /* The class: */
24
+ VALUE ov_http_response_class;
25
+
23
26
  static VALUE BODY_SYMBOL;
24
27
  static VALUE CODE_SYMBOL;
25
28
  static VALUE HEADERS_SYMBOL;
@@ -18,7 +18,7 @@ limitations under the License.
18
18
  #define __OV_HTTP_RESPONSE_H__
19
19
 
20
20
  /* Classes: */
21
- VALUE ov_http_response_class;
21
+ extern VALUE ov_http_response_class;
22
22
 
23
23
  /* Content: */
24
24
  typedef struct {
@@ -16,5 +16,5 @@
16
16
 
17
17
 
18
18
  module OvirtSDK4
19
- VERSION = '4.0.4'
19
+ VERSION = '4.0.5'
20
20
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ovirt-engine-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.4
4
+ version: 4.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Hernandez