torba 1.0.0 → 1.0.1

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: dffb3d16bfcf61e1a3140263cad47fc52626ef52
4
- data.tar.gz: 1b60520eed5966d1a4cf78461f3f5676ca65d36b
3
+ metadata.gz: 116382305382082bf20b73b22c89d44648fdf0d1
4
+ data.tar.gz: abf29fc7033268f3beb04cc42b9fb68172b6d281
5
5
  SHA512:
6
- metadata.gz: de9720c5da6dacb684e29e0f2a1d8d4d256e7dfbee348552d073074578bad552e19742ccc768ff1897cfd87c6aa3ff42a8f5025ecc58476f4b28de1820644787
7
- data.tar.gz: 90b3a95611f4839a78aebf35e5146f5b510d969cc2c0278a4787f4034f597f7d42767bef40f3b213ac5780fa2ca18d7978083f15a3cdca319375d3c683b25c78
6
+ metadata.gz: 2c9cbaed4f544e63f96f3c563bdef4ef62557f1023246a4f73ceb882edb55b15311723af9110cf769e33199cbd116ff7b11413c49ae537aeb66ecb1daeb6f15f
7
+ data.tar.gz: b1e685454739fe07027c3ce63328172a998655d4240cd884e59bc2ad39e81204a6b3e6b98b4c3e867709a79013bd93960c71523212aa42b1b2ec3330b4812b86
@@ -1,5 +1,11 @@
1
1
  ## Unreleased
2
2
 
3
+ ## Version 1.0.1
4
+
5
+ ### Bug fixes
6
+
7
+ * Fix unpacking tar.gz when running on unpriveleged containers
8
+
3
9
  ## Version 1.0.0
4
10
 
5
11
  ### Breaking changes
data/README.md CHANGED
@@ -17,7 +17,7 @@ Production ready.
17
17
 
18
18
  ## Documentation
19
19
 
20
- [Released version](http://rubydoc.info/gems/torba/1.0.0)
20
+ [Released version](http://rubydoc.info/gems/torba/1.0.1)
21
21
 
22
22
  ## Why
23
23
 
@@ -25,7 +25,7 @@ module Torba
25
25
 
26
26
  tempfile = GetFile.process(url)
27
27
 
28
- command = "gzip -qcd #{tempfile.path} | tar -mxpf - --strip-components=1 -C #{cache_path}"
28
+ command = "gzip -qcd #{tempfile.path} | tar --no-same-owner -mxpf - --strip-components=1 -C #{cache_path}"
29
29
  system(command) || raise(Errors::ShellCommandFailed.new(command))
30
30
  end
31
31
  rescue
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "torba"
3
- spec.version = "1.0.0"
3
+ spec.version = "1.0.1"
4
4
  spec.authors = ["Andrii Malyshko"]
5
5
  spec.email = ["mail@nashbridges.me"]
6
6
  spec.description = "Bundler for Sprockets"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: torba
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrii Malyshko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-09 00:00:00.000000000 Z
11
+ date: 2016-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor