capistrano-scm-copy_strategy 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 +4 -4
- data/CHANGELOG.md +22 -0
- data/README.md +3 -0
- data/capistrano-scm-copy_strategy.gemspec +1 -1
- data/lib/capistrano/scm/copy-strategy.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 643f3676af822982f948ef5210e08d87933b1743
|
4
|
+
data.tar.gz: 6e2ffeae1d549b8672a29598473f36ce577e6455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f311a24773f5d16e7e0cf6e47a5d7e9df5fb9970d107064726c8968a962a9e6fbdd94dcace32946b49949f8bc7388959eab87fcfd156938b3d59aa1428028bcb
|
7
|
+
data.tar.gz: 4f0bdd3b2dc3c77497cdc6259842b24576acc0ca80c84a520c7a44be247594e9304a72409fe03d7a17de6cfaaa99eb6dfa91d8ac9cf1532d299d30261b0b62e8
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Changelog
|
2
|
+
=========
|
3
|
+
|
4
|
+
|
5
|
+
## `1.0.1`
|
6
|
+
|
7
|
+
https://github.com/Coolshop/capistrano-scm-copy-strategy/compare/1.0.1...1.0.0
|
8
|
+
|
9
|
+
* Fix check of the copied temp folder. Path corrected.
|
10
|
+
|
11
|
+
## `1.0.0`
|
12
|
+
|
13
|
+
https://github.com/Coolshop/capistrano-scm-copy-strategy/compare/1.0.0...0.1.0
|
14
|
+
|
15
|
+
* Update README with the available configurations
|
16
|
+
* Added CHANGELOG
|
17
|
+
* Removed useless 'warn' here and there
|
18
|
+
* Fix the exclusion strategy to be able to use wildcards
|
19
|
+
|
20
|
+
## `0.1.0`
|
21
|
+
|
22
|
+
* First unstable release
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
capistrano-scm-copy_strategy
|
2
2
|
============================
|
3
3
|
|
4
|
+
[](https://badge.fury.io/rb/capistrano-scm-copy_strategy)
|
5
|
+
|
6
|
+
|
4
7
|
A copy strategy for Capistrano 3, which mimics the `:copy` scm of Capistrano 2.
|
5
8
|
|
6
9
|
This will make Capistrano tar the current directory, upload it to the server(s) and then extract it in the release directory.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'capistrano-scm-copy_strategy'
|
3
|
-
s.version = '1.0.
|
3
|
+
s.version = '1.0.1'
|
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."
|
@@ -51,7 +51,7 @@ module Capistrano
|
|
51
51
|
FileUtils.rm_rf Dir.glob("#{temp_folder}/#{env.release_timestamp}/#{dir}")
|
52
52
|
}
|
53
53
|
|
54
|
-
sh "ls -al #{temp_folder}/#{env.release_timestamp}
|
54
|
+
sh "ls -al #{temp_folder}/#{env.release_timestamp}"
|
55
55
|
|
56
56
|
tar_verbose = fetch(:tar_verbose, true) ? "v" : ""
|
57
57
|
|
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.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alberto Brino
|
@@ -32,6 +32,7 @@ extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- ".gitignore"
|
35
|
+
- CHANGELOG.md
|
35
36
|
- README.md
|
36
37
|
- capistrano-scm-copy_strategy.gemspec
|
37
38
|
- lib/capistrano/scm/copy-strategy.rb
|