capistrano-scm-copy_strategy 1.0.1 → 1.0.3

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: 643f3676af822982f948ef5210e08d87933b1743
4
- data.tar.gz: 6e2ffeae1d549b8672a29598473f36ce577e6455
3
+ metadata.gz: 872dbcbfc44cd24db25ce57203047bbc6e8f12be
4
+ data.tar.gz: 923e66c362f7e7d55d4357e469fa22e8c690f0ee
5
5
  SHA512:
6
- metadata.gz: f311a24773f5d16e7e0cf6e47a5d7e9df5fb9970d107064726c8968a962a9e6fbdd94dcace32946b49949f8bc7388959eab87fcfd156938b3d59aa1428028bcb
7
- data.tar.gz: 4f0bdd3b2dc3c77497cdc6259842b24576acc0ca80c84a520c7a44be247594e9304a72409fe03d7a17de6cfaaa99eb6dfa91d8ac9cf1532d299d30261b0b62e8
6
+ metadata.gz: 6a756c09a6f2eb3796493831935c825849c62ed0aba6481419d022312da001e8041805db2fd3e21bc9537a4bfdf0e1ba404494805d758d5bd167f6f207d5c0df
7
+ data.tar.gz: db07eb2ed017e015e190b1bc82f0ecc194fafcf3332f09eac3677c2f80763672f203e2ccc3c494f9cfa9a5fdab4492f66f6d546a16a875a37e8c134704d1430a
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'capistrano-scm-copy_strategy'
3
- s.version = '1.0.1'
3
+ s.version = '1.0.3'
4
4
  s.date = '2017-04-10'
5
5
  s.summary = "A copy strategy for Capistrano 3, which mimics the :copy scm of Capistrano 2."
6
6
  s.description = "This will make Capistrano tar the current directory, upload it to the server(s) and then extract it in the release directory."
@@ -22,7 +22,9 @@ namespace :copy_strategy do
22
22
  task update: :'copy_strategy:clean' do
23
23
  on release_roles :all do
24
24
  archive = copy_strategy_plugin.create_archive
25
- upload!(archive, repo_path)
25
+ within repo_path do
26
+ upload! archive, "."
27
+ end
26
28
  end
27
29
  end
28
30
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-scm-copy_strategy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alberto Brino
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  version: '0'
58
58
  requirements: []
59
59
  rubyforge_project:
60
- rubygems_version: 2.6.11
60
+ rubygems_version: 2.6.12
61
61
  signing_key:
62
62
  specification_version: 4
63
63
  summary: A copy strategy for Capistrano 3, which mimics the :copy scm of Capistrano