mixlib-install 2.1.3 → 2.1.4

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: d424a33019d3bd912eefa7331d2dd448ae56d648
4
- data.tar.gz: b0ea47fa486e2022d427652dd8d5a7540ea614c4
3
+ metadata.gz: 4764a817f6f781c4fad2b870666b1bdf96c057f0
4
+ data.tar.gz: 36350ca6f4849c9468d0af8492373eac5e8a6147
5
5
  SHA512:
6
- metadata.gz: 54e75ad628d8ca9b39f2e0e02ef40b25c8eb754bb70c4ce075e610161436bb1a07318307dfb18c50e9412cb035739767e0e222c74f18cfd835283ab404ac06c2
7
- data.tar.gz: 19226b6e4115a5c0e8b9c272cfc150281f33528ddd1d3440110ed1d941a4308f559df3b0d16e0a63d9f19d43d522c56e8a1454af0ea1128c690ac18af1246d5d
6
+ metadata.gz: e3fc2ba02d777c4dc5011d65a48643291373b4982b95b2160b551ff20b3cb929d7c2bf20635e3cafd9c92386b05c7229ccd646e265fbcf5c647ca864006e82ac
7
+ data.tar.gz: c8b48e71d606e9b45058ba4b9b16f1d247b2ae272c4b3879a5c4dea2e043342162653e85078059658b1df392e5b0d5f46397627f9b7111ed1afb27db8bcde137
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## [2.1.4]
4
+ - Fix Cumulus Linux and Cumulus Networks platform detection
5
+
3
6
  ## [2.1.3]
4
7
  - Collection of software dependencies and license content is now configurable. Disabled by default.
5
8
 
data/README.md CHANGED
@@ -96,7 +96,7 @@ Mixlib::Install.new(options).available_versions
96
96
  # => ["12.13.3", "12.13.7"]
97
97
  ```
98
98
 
99
- #### Static method
99
+ #### Class method
100
100
  ```ruby
101
101
  Mixlib::Install.available_versions("chef", "stable")
102
102
 
@@ -106,7 +106,7 @@ Mixlib::Install.available_versions("chef", "stable")
106
106
  ### Collecting Software Dependencies and License Content
107
107
  Collecting software dependencies and license content for ArtifactInfo instances
108
108
  requires additional requests to the repository server. By default, collection is disabled.
109
- To return that data for instances methods `software_dependencies` and `license_content`, the `include_metadata` option must be enabled.
109
+ To return data for instance methods `software_dependencies` and `license_content`, the `include_metadata` option must be enabled.
110
110
 
111
111
  ```
112
112
  options = {
@@ -29,9 +29,9 @@ if test -f "/etc/lsb-release" && grep -q DISTRIB_ID /etc/lsb-release && ! grep -
29
29
  platform=`grep DISTRIB_ID /etc/lsb-release | cut -d "=" -f 2 | tr '[A-Z]' '[a-z]'`
30
30
  platform_version=`grep DISTRIB_RELEASE /etc/lsb-release | cut -d "=" -f 2`
31
31
 
32
- if test "$platform" = "cumulus linux"; then
32
+ if test "$platform" = "\"cumulus linux\""; then
33
33
  platform="cumulus_linux"
34
- elif test "$platform" = "cumulus networks"; then
34
+ elif test "$platform" = "\"cumulus networks\""; then
35
35
  platform="cumulus_networks"
36
36
  fi
37
37
 
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class Install
3
- VERSION = "2.1.3"
3
+ VERSION = "2.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixlib-install
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thom May
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-10-19 00:00:00.000000000 Z
12
+ date: 2016-10-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: artifactory