occi-api 4.3.0.beta.1 → 4.3.0.beta.2
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/lib/occi/api/client/client_http.rb +3 -2
- data/lib/occi/api/version.rb +1 -1
- data/occi-api.gemspec +1 -1
- metadata +1 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 148ab826d355e4ab7d0e5a2f04fd3b8848c815f3
|
|
4
|
+
data.tar.gz: 9455c22ddc4041377476008e5dc390fcd7dd00e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6cc94c67081438bcd4052b43c8c2974c91653d98f34e50e7cfd4516aaea668eeaba76f137cce19ec8a9e22c96a73669e07935b715289ba689b17eb8631a34d1d
|
|
7
|
+
data.tar.gz: fcfec226f4fe598a73a9b32960236c6caf0b7e0ec4af1c7bf28ce075a5f59d384878c9510915fe942ed9ca0df509e2cad75817c6110cce6928e49a0c3a04fb5b
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
require 'httparty'
|
|
2
|
-
require 'persistent_httparty'
|
|
2
|
+
#require 'persistent_httparty'
|
|
3
3
|
|
|
4
4
|
# load all parts of the ClientHttp
|
|
5
5
|
Dir[File.join(File.dirname(__FILE__), 'http', '*.rb')].each { |file| require file.gsub('.rb', '') }
|
|
@@ -12,7 +12,8 @@ module Occi::Api::Client
|
|
|
12
12
|
include HTTParty
|
|
13
13
|
|
|
14
14
|
# Take advantage of persistent HTTP connections
|
|
15
|
-
|
|
15
|
+
# TODO: currently breaks SSL w/ X.509 auth, investigate why
|
|
16
|
+
#persistent_connection_adapter
|
|
16
17
|
|
|
17
18
|
# TODO: change default Accept to JSON as soon as it is properly
|
|
18
19
|
# implemented in OpenStack's OCCI-OS
|
data/lib/occi/api/version.rb
CHANGED
data/occi-api.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
|
|
|
21
21
|
gem.add_dependency 'occi-core', '~> 4.3', '>= 4.3.0'
|
|
22
22
|
gem.add_dependency 'httparty', '~> 0.13', '>= 0.13.1'
|
|
23
23
|
gem.add_dependency 'json', '~> 1.8', '>= 1.8.1'
|
|
24
|
-
gem.add_dependency 'persistent_httparty', '~> 0.1', '>= 0.1.2'
|
|
24
|
+
#gem.add_dependency 'persistent_httparty', '~> 0.1', '>= 0.1.2'
|
|
25
25
|
|
|
26
26
|
gem.required_ruby_version = '>= 1.9.3'
|
|
27
27
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: occi-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.0.beta.
|
|
4
|
+
version: 4.3.0.beta.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Florian Feldhaus
|
|
@@ -72,26 +72,6 @@ dependencies:
|
|
|
72
72
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: 1.8.1
|
|
75
|
-
- !ruby/object:Gem::Dependency
|
|
76
|
-
name: persistent_httparty
|
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
|
78
|
-
requirements:
|
|
79
|
-
- - "~>"
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: '0.1'
|
|
82
|
-
- - ">="
|
|
83
|
-
- !ruby/object:Gem::Version
|
|
84
|
-
version: 0.1.2
|
|
85
|
-
type: :runtime
|
|
86
|
-
prerelease: false
|
|
87
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
88
|
-
requirements:
|
|
89
|
-
- - "~>"
|
|
90
|
-
- !ruby/object:Gem::Version
|
|
91
|
-
version: '0.1'
|
|
92
|
-
- - ">="
|
|
93
|
-
- !ruby/object:Gem::Version
|
|
94
|
-
version: 0.1.2
|
|
95
75
|
description: This gem provides ready-to-use client classes to simplify the integration
|
|
96
76
|
of OCCI into your application
|
|
97
77
|
email:
|