rancher-api 0.5.1 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c63e3e47ec3a6af1dd0f61214b033eaeaeefb4b5
4
- data.tar.gz: 43b3045142fe96e27a9fbccb2dd8d3b6eb71d889
3
+ metadata.gz: 67a49bcfeabfa4499cc292a5ee7c1b7970c53df5
4
+ data.tar.gz: ffac39fbdcc85ad9fbf966a595471942458e317e
5
5
  SHA512:
6
- metadata.gz: 56b69e04eeb7669fb2253dcb69acf58e13eb2dc82e16080a8d52cc0a98723400ec3bfed14a3de3026bbdf4d0ae039999f30ab5f5e469e4b4457c0d0b4faabd1c
7
- data.tar.gz: 4078f964156fcf3a23567b6fdffb085d97bd8870d3cf8471d53bc62a81e1788409e7b181c916a614c7a30f57d897dd6ba5c03a2bf69801059116bf8ca37322b5
6
+ metadata.gz: 9a53314359f7870be6cc7995eaeb62512b88c110eec37e3f5090e851ee78da55923b76000d0e8e6c8d85ca8f0636d06cd4c4cbd3c8a1215951c8f7b091b12375
7
+ data.tar.gz: 1c30be0191c8b49b116a94dddd63a86afe90fccf75f67306f11859386bdd3e926561382f70e23dc3ebf832a749e5fd2fe56cfde5a51be0429287918921985c32
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [0.5.2] - 2016-08-22
6
+
7
+ - adding models for registry and registrycredentials
8
+
5
9
  ## [0.5.1] - 2016-08-16
6
10
 
7
11
  - bugfix in model helpers #handle_response when handling collections
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rancher-api (0.5.1)
4
+ rancher-api (0.5.2)
5
5
  faraday_middleware
6
6
  faye-websocket
7
7
  her (~> 0.8.1)
@@ -8,3 +8,5 @@ require 'rancher/api/models/machine'
8
8
  require 'rancher/api/models/project'
9
9
  require 'rancher/api/models/service'
10
10
  require 'rancher/api/models/ipaddress'
11
+ require 'rancher/api/models/registry'
12
+ require 'rancher/api/models/registrycredential'
@@ -0,0 +1,10 @@
1
+ module Rancher
2
+ module Api
3
+ class Registry
4
+ include Her::Model
5
+ include Helpers::Model
6
+
7
+ belongs_to :project
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ module Rancher
2
+ module Api
3
+ class Registrycredential
4
+ include Her::Model
5
+ include Helpers::Model
6
+
7
+ belongs_to :project
8
+ end
9
+ end
10
+ end
@@ -1,5 +1,5 @@
1
1
  module Rancher
2
2
  module Api
3
- VERSION = '0.5.1'.freeze
3
+ VERSION = '0.5.2'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rancher-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Kurkin
@@ -233,6 +233,8 @@ files:
233
233
  - lib/rancher/api/models/machine.rb
234
234
  - lib/rancher/api/models/machine/driver_config.rb
235
235
  - lib/rancher/api/models/project.rb
236
+ - lib/rancher/api/models/registry.rb
237
+ - lib/rancher/api/models/registrycredential.rb
236
238
  - lib/rancher/api/models/service.rb
237
239
  - lib/rancher/api/version.rb
238
240
  - rancher-api.gemspec