mixlib-archive 0.4.0 → 0.4.1

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: 62781fdd21bfcd44095a2ed1c6b018f55a02f316
4
- data.tar.gz: ca7b4a40f837192ebae44f13a53c5bd6fa2b7e91
3
+ metadata.gz: 06e38a8e985c4488c001cdc1f2bb9a802eea85d8
4
+ data.tar.gz: ab35dfd768fab3de993a7bf9ac6f7417a6da5edd
5
5
  SHA512:
6
- metadata.gz: 74ed668e4a73abc0fba7c7bc2b9dc07efb41506c55c198f5df6131de0d0c74ae9f45d5e9903eb8a14a8177e9e61cdd3b01aad2d6f6b6d3f05484fee118248101
7
- data.tar.gz: 5311c175ff2b59f0e1caf830649cb15c23070ebe8a0ed43088a22fbef0fee6ab11c53ddca6809bef2ea608025cf76ee47989af5c46c3c818cd80f3879a71a207
6
+ metadata.gz: 76067595e643e6d4699fa856ee0c716618ef7707c4e5c4e0a5cd8bd5f5c8cee8448b22a92d800efb452baad0d7ac3a922bc4b38c2c7f17b089fa397de36fa479
7
+ data.tar.gz: 7cc24941518f91fcd10d8433df67c74938c9a988050dedf23bfd08b50fefbf6256b6c79ed46e85857d1015e275d3a359f68ff1c7063b5e25a8320de694ac4fad
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [v0.4.0](https://github.com/chef/mixlib-archive/tree/v0.4.0) (2017-02-02)
3
+ ## [v0.4.1](https://github.com/chef/mixlib-archive/tree/v0.4.1) (2017-02-02)
4
+
5
+ [Full Changelog](https://github.com/chef/mixlib-archive/compare/v0.4.0...v0.4.1)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Accept a single pattern to ignore [\#8](https://github.com/chef/mixlib-archive/pull/8) ([thommay](https://github.com/thommay))
4
10
 
11
+ ## [v0.4.0](https://github.com/chef/mixlib-archive/tree/v0.4.0) (2017-02-02)
5
12
  [Full Changelog](https://github.com/chef/mixlib-archive/compare/v0.3.0...v0.4.0)
6
13
 
7
14
  **Fixed bugs:**
@@ -26,7 +26,7 @@ module Mixlib
26
26
  end
27
27
 
28
28
  def extract(destination, perms: true, ignore: [])
29
- ignore = [/^\.$/, /\.{2}/] + ignore
29
+ ignore = [/^\.$/, /\.{2}/] + Array(ignore)
30
30
 
31
31
  create_and_empty(destination)
32
32
 
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class Archive
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixlib-archive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software, Inc