occi-api 4.3.0.beta.1 → 4.3.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ab882ff01d442af84f9ac23fc4b4da41091f5d6
4
- data.tar.gz: 6ded8b446e879ad73334b2b42e868c04a9009f3f
3
+ metadata.gz: 148ab826d355e4ab7d0e5a2f04fd3b8848c815f3
4
+ data.tar.gz: 9455c22ddc4041377476008e5dc390fcd7dd00e5
5
5
  SHA512:
6
- metadata.gz: 3a11d6fb175e27d18a240c8303671f8847de44026883cf3dfd60fae017103c2cd9d5b0587bf0d550f710b9370f6419ac56bd155e21ad1071c98e12e68ebff881
7
- data.tar.gz: 74b2e556f12c701a92a00074b85f4a96a201a45f64691037573642deb281898342f6a02c1f50a826c13f3c851a959415029af922a7cdb67691cb3a8c09d7ad8b
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
- persistent_connection_adapter
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
@@ -1,5 +1,5 @@
1
1
  module Occi
2
2
  module Api
3
- VERSION = "4.3.0.beta.1" unless defined?(::Occi::Api::VERSION)
3
+ VERSION = "4.3.0.beta.2" unless defined?(::Occi::Api::VERSION)
4
4
  end
5
5
  end
@@ -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.1
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: