rancher-api 0.3.6 → 0.3.7

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: cb8f88ffae8adb164999403ecdbd8448c5396c9c
4
- data.tar.gz: d36bb511111622f42f4d7fb5e81bea7ac5856622
3
+ metadata.gz: db47b8b18957e7f85b04666e9cd887bf976d84b0
4
+ data.tar.gz: 1cc413650202352628ba9e0cb103e3bc61dad4c6
5
5
  SHA512:
6
- metadata.gz: 8932873e8728d37462c7cf1a8ac969c717d981a68623b358d126ee74860e9d426dcc8f7f448c1ec27acd55d00a38f0aa2f437ebcfab776c23701b38bb5719bca
7
- data.tar.gz: 767307b8bbd15e462e1c23144c676c0c529a9737acc647676df2cbbf6a5dcb917a751309e2814a81859ab1b1664cc7f01af186d2d8af85c36b5dc33695c4501c
6
+ metadata.gz: 1a3036e738ca07f27fcf90d639113eecf1447cb805689e0f4d6464d98ff1cf414f691d9e79ee9658cc534ebdaeaf74fadadbf93bd537455f682cc74b937a1fd0
7
+ data.tar.gz: e115ceba6ee64c4c43aca9c6cc966642020e12ee0967ddfd574b5d72b36a5a56380344b4bd8d1ceb09c7d0613f625e80ffc700aaf299831556846041b902922a
data/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # Change Log
2
+ All notable changes to this project will be documented in this file.
3
+ This project adheres to [Semantic Versioning](http://semver.org/).
4
+
5
+ ## [0.3.7] - 2016-03-15
6
+
7
+ - fix an issue with RANCHER_URL env variable (append `/v1/` to the RANCHER_URL env variable if it exists). This way RANCHER_URL becomes truly `rancher-compose`-compatible.
8
+
9
+ ## [0.3.6] - 2016-03-15
10
+ ### Added
11
+
12
+ - VMware vSphere driver support
13
+ - abillity to configure Rancher::Api using `rancher-compose`-compatible environment variables
14
+
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rancher-api (0.3.6)
4
+ rancher-api (0.3.7)
5
5
  faraday_middleware
6
6
  faye-websocket
7
7
  her (~> 0.7.6)
@@ -6,7 +6,7 @@ module Rancher
6
6
  attr_accessor :secret_key
7
7
 
8
8
  def initialize
9
- @url = ENV['RANCHER_URL']
9
+ @url = "#{ENV['RANCHER_URL']}/v1/" if ENV['RANCHER_URL'].present?
10
10
  @access_key = ENV['RANCHER_ACCESS_KEY']
11
11
  @secret_key = ENV['RANCHER_SECRET_KEY']
12
12
  end
@@ -1,5 +1,5 @@
1
1
  module Rancher
2
2
  module Api
3
- VERSION = "0.3.6"
3
+ VERSION = "0.3.7"
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.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Kurkin
@@ -162,6 +162,7 @@ files:
162
162
  - ".rspec"
163
163
  - ".ruby-version"
164
164
  - ".travis.yml"
165
+ - CHANGELOG.md
165
166
  - Gemfile
166
167
  - Gemfile.lock
167
168
  - LICENSE