chef-sugar 2.3.1 → 2.3.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: d7235d14da8dc38078d5628514c42b4207f899a0
4
- data.tar.gz: dd480e8c7951928e2474a0d7a1f68fb9504be3a2
3
+ metadata.gz: 29b7d7e12e7d9ae4b0723f877983a5d42505ae3e
4
+ data.tar.gz: 1e16639547341f9b8e873e84866c5dc040003a48
5
5
  SHA512:
6
- metadata.gz: 842a39ed8a9ecfc1fbcd5d125002c16cd16433ee03b74a5f89baf943f5339208473083b08ad88efef182f8055d72b46bb32a1d9f90f90233f6c170dae75b1aed
7
- data.tar.gz: 9e2d7737880a73558af1bb24299f07be8f88172bcf5fbb0b6a02aac2859ebbf753b5acffa3590010485591f96398ef9eb33cb8b55e7d0244d0fa40b3d64c285d
6
+ metadata.gz: 7f3cc8734d0598fc2647b67f8e3d98660a8fa7f0c303697bf60c2dce5afcbfeca15a9952a6b535882ca59156b26ad3432f40710e8e46edac2ee29d9d614b1b20
7
+ data.tar.gz: 0e117f83f0dbd560a9bb16c5bfea6a61a01f99bc544d27aa267bddd008680aa02ff5a51557c50c407d9a380b4d374117f4fa203b8c31c28d88d941a8a6f58458
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@ Chef Sugar Changelog
2
2
  =========================
3
3
  This file is used to list changes made in each version of the chef-sugar cookbook and gem.
4
4
 
5
+ v2.3.2 (2014-10-07)
6
+ -------------------
7
+ ### Big Fixues
8
+ - Include `amd64` in `_64_bit?` check
9
+
5
10
  v2.3.1 (2014-10-07)
6
11
  -------------------
7
12
  ### Improvements
@@ -25,7 +25,7 @@ class Chef
25
25
  # @return [Boolean]
26
26
  #
27
27
  def _64_bit?(node)
28
- %w(x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
28
+ %w(amd64 x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
29
29
  .include?(node['kernel']['machine'])
30
30
  end
31
31
 
@@ -16,6 +16,6 @@
16
16
 
17
17
  class Chef
18
18
  module Sugar
19
- VERSION = '2.3.1'
19
+ VERSION = '2.3.2'
20
20
  end
21
21
  end
data/metadata.rb CHANGED
@@ -14,4 +14,4 @@ For the most up-to-date information and documentation, please visit the [Chef
14
14
  Sugar project page on GitHub](https://github.com/sethvargo/chef-sugar).
15
15
  EOH
16
16
 
17
- version '2.3.1'
17
+ version '2.3.2'
data/recipes/default.rb CHANGED
@@ -18,7 +18,7 @@
18
18
  #
19
19
 
20
20
  chef_gem('chef-sugar') do
21
- version '2.3.1'
21
+ version '2.3.2'
22
22
  action :nothing
23
23
  end.run_action(:install)
24
24
 
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe Chef::Sugar::Architecture do
4
4
  it_behaves_like 'a chef sugar'
5
5
 
6
- _64_bit_machines = %w(x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
6
+ _64_bit_machines = %w(amd64 x86_64 ppc64 s390x ia64 sparc64 aarch64 arch64 arm64)
7
7
 
8
8
  describe '#_64_bit?' do
9
9
  _64_bit_machines.each do |arch|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-sugar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Vargo