occi-api 4.2.0.beta.10 → 4.2.0.beta.12

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: 3f0513db8dfc7aa5d65286eb15f5ed55b2b11e12
4
- data.tar.gz: fc0bda8b7788f06845283330b61872f7195ba782
3
+ metadata.gz: d0454d6d2434cf832d9a771a26366f8741c9fc4f
4
+ data.tar.gz: 2128a013520395a20fd0883ef3d782d140a35cae
5
5
  SHA512:
6
- metadata.gz: ef1f7ab2ce8323302ac056e7999e5562f32edb0c217b44521390d1273e3b374d4e2afb991e4efa60d1ac2ef3aafd928246f9d2ac451bfaf4ac474cf38b5e6493
7
- data.tar.gz: 117dcd2ae31afd5ada3e9665219087710658929c21cf3813aa0af1604e23189529b65c04c929f0f23a8f6559d84517eae0131421a12676d563aa57e7fb0ced98
6
+ metadata.gz: 28dff1463abcd17a1905414c8ca320c1fb54c3f771071412160c631143204458964a32f22b8faec2d8f5e71b1d5df44c612152cf40d23841e1a21200e7de2915
7
+ data.tar.gz: b91888dfabd1c46378a1cd72689f12269f028ddfac91fac069f983c8747e8c9ff519fb02688ea1799362ad844823dfcc6b68709af592dea9dedda413e3d76b9c
@@ -50,7 +50,7 @@ module Occi::Api::Client
50
50
 
51
51
  if tis.length > 1
52
52
  raise Occi::Api::Client::Errors::AmbiguousNameError,
53
- "Category type #{type.inspect} is ambiguous, use a type identifier!"
53
+ "Action type #{type.inspect} is ambiguous, use a type identifier!"
54
54
  end
55
55
 
56
56
  tis.first
@@ -13,7 +13,7 @@ module Occi::Api::Client
13
13
  def initialize(options = {})
14
14
  # define defaults and convert options to Hashie::Mash if necessary
15
15
  defaults = Hashie::Mash.new({
16
- :endpoint => "http://localhost:3300/",
16
+ :endpoint => "http://localhost:3000/",
17
17
  :auth => {:type => "none"},
18
18
  :log => {:out => STDERR, :level => Occi::Log::WARN, :logger => nil},
19
19
  :auto_connect => true,
@@ -15,7 +15,8 @@ module Occi::Api::Client
15
15
  # 'Accept' => 'application/occi+json,text/plain;q=0.8,text/occi;q=0.2'
16
16
  DEFAULT_HEADERS = {
17
17
  'Accept' => 'text/plain,text/occi;q=0.2',
18
- 'User-Agent' => "rOCCI HTTPClient #{Occi::Api::VERSION}"
18
+ 'User-Agent' => "rOCCI-core/#{Occi::VERSION} rOCCI-api/#{Occi::Api::VERSION} OCCI/1.1 " \
19
+ "#{RUBY_ENGINE}-#{RUBY_PLATFORM}/#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
19
20
  }
20
21
  headers DEFAULT_HEADERS
21
22
 
@@ -24,7 +25,7 @@ module Occi::Api::Client
24
25
  #
25
26
  # @example
26
27
  # options = {
27
- # :endpoint => "http://localhost:3300/",
28
+ # :endpoint => "http://localhost:3000/",
28
29
  # :timeout => 15
29
30
  # :auth => {:type => "none"},
30
31
  # :log => {:out => STDERR, :level => Occi::Log::WARN, :logger => nil},
@@ -40,7 +41,7 @@ module Occi::Api::Client
40
41
  super options
41
42
 
42
43
  self.class.base_uri @endpoint.to_s
43
- self.class.timeout @options[:timeout].to_i unless @options[:timeout].blank?
44
+ self.class.default_timeout @options[:timeout].to_i unless @options[:timeout].blank?
44
45
 
45
46
  # get model information from the endpoint
46
47
  # and create Occi::Model instance
@@ -68,6 +69,9 @@ module Occi::Api::Client
68
69
  :headers => headers
69
70
  )
70
71
 
72
+ response_msg = response_message(response)
73
+ raise "HTTP GET failed! #{response_msg}" unless response.code == 200
74
+
71
75
  # TODO: remove the gsub OCCI-OS hack as soon as they stop using 'uri:'
72
76
  response.body.gsub(/\# uri:\/(compute|storage|network)\/[\n]?/, '').split("\n").compact
73
77
  end
@@ -1,5 +1,5 @@
1
1
  module Occi
2
2
  module Api
3
- VERSION = "4.2.0.beta.10" unless defined?(::Occi::Api::VERSION)
3
+ VERSION = "4.2.0.beta.12" unless defined?(::Occi::Api::VERSION)
4
4
  end
5
5
  end
data/occi-api.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
18
18
  gem.test_files = `git ls-files -- {test,spec}/*`.split("\n")
19
19
  gem.require_paths = ["lib"]
20
20
 
21
- gem.add_dependency 'occi-core', '~> 4.2.0'
21
+ gem.add_dependency 'occi-core', '~> 4.2.5'
22
22
  gem.add_dependency 'httparty'
23
23
  gem.add_dependency 'json'
24
24
 
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.2.0.beta.10
4
+ version: 4.2.0.beta.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Feldhaus
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 4.2.0
21
+ version: 4.2.5
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ~>
27
27
  - !ruby/object:Gem::Version
28
- version: 4.2.0
28
+ version: 4.2.5
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: httparty
31
31
  requirement: !ruby/object:Gem::Requirement