capistrano-tar-files 0.0.5 → 0.0.6

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: 8eae4f263ad06b3a1fd6c314443a54f5cb374b02
4
- data.tar.gz: 246fde4205bd404a981f5a54835533a65cc49c1e
3
+ metadata.gz: ebd5a41c35038f2935b92630d8c87ee6a3c48018
4
+ data.tar.gz: d780067415139d943970f6b0e3e1c27cd0739752
5
5
  SHA512:
6
- metadata.gz: 8fca779abfd1faa89b5911571f67d98c9ca43dbdf127ad4ac1cff9964db2097cc18ea33db5e14da508fdf86df370b1d60a42e26a576cecca75a2182f66fdbc6b
7
- data.tar.gz: d2321ec345d83fe36d0a3df775e68b0b2a1581b30e5efe45765785ffd8240430ba44244056d5fa59cd7e2c37426456b7befc7bcb613c90a89bc229f9413196d6
6
+ metadata.gz: f6085d8fef39fbcfeb53a0e89b102987cbcc891c30eab0433654b0f82ece3ac238ff93801d41d15d68a914ccd44bcc8088c1315766a7574b7d752b2b6898f592
7
+ data.tar.gz: 5cd7a2566933918f8485629adf151139c76ea559d0ac49b72d32c8b4e216fdf14ebb92aae3a87fa69c0474fbacfa9f638750c792a098805a4f8308b6f94303de
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'capistrano-tar-files'
7
- spec.version = '0.0.5'
7
+ spec.version = '0.0.6'
8
8
  spec.authors = ['Andy Palmer']
9
9
  spec.email = ['andy@andypalmer.me']
10
10
  spec.description = %q{Create/unpack tarball archives for directories that don't change often like vendor and node_modules}
@@ -27,7 +27,7 @@ namespace :deploy do
27
27
  if test "[ -f #{current_path.to_s}/#{path} || -d #{current_path.to_s}/#{path} ]"
28
28
  execute :tar, fetch(:tar_create_flags), "#{deploy_to}/#{fetch(:tar_location)}/#{path.gsub("/", "_")}.tar", "-C #{current_path.to_s}/#{path} ."
29
29
  else
30
- warn "#{path} does not exist. Skipping creating archive."
30
+ warn "#{current_path.to_s}/#{path} does not exist. Skipping creating archive."
31
31
  end
32
32
  end
33
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-tar-files
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Palmer