revision 1.2.6 → 1.2.7
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/README.org +3 -4
- data/lib/revision/releasable.rb +1 -0
- data/lib/revision/version.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 682306be7408f18b9346de0b36dc9b98b1fc104209191bbb6cba601b9cba0509
|
|
4
|
+
data.tar.gz: 0c48f5c2952dc1a2abe7c68010d708b48a93ad3da4fc63d9d031f05846f610d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz: '
|
|
6
|
+
metadata.gz: 55a4cefdae2b4014f90fad6c36865ad69745baa6e0b2944a41f37fc68632dc38d1487dd420210425cab22e555f01d1352d92db491dbc441206e3d2d06c4a8a8b
|
|
7
|
+
data.tar.gz: '0369665bfdd54f97bdb1f7cf92c5f530199cd5beb80fb0b1cd7440060767786014285549f9a6bc7207ecee17ab8bdd848a11dd83fa38f1885aa88c42710189f1'
|
data/README.org
CHANGED
|
@@ -35,12 +35,11 @@
|
|
|
35
35
|
- Automatically prompts for a changelog entry each time a revision identifier is incremented
|
|
36
36
|
- Optionally commits and tags changes to a git repo after an update to the revision ID
|
|
37
37
|
- Builds and archives projects in zip format (including release notes and arbitrary release artefacts defined
|
|
38
|
+
- Deploys
|
|
38
39
|
|
|
39
40
|
* Installation
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
The gem hasn't been uploaded to rubygems.org as yet.
|
|
43
|
-
#+END_NOTE
|
|
41
|
+
** Dependencies
|
|
42
|
+
Ruby / Rubygems installed
|
|
44
43
|
|
|
45
44
|
** From rubygems.org
|
|
46
45
|
|
data/lib/revision/releasable.rb
CHANGED
|
@@ -202,6 +202,7 @@ module Revision
|
|
|
202
202
|
end
|
|
203
203
|
|
|
204
204
|
raise Errors::NotSpecified.new(':deploy/:dest') if destination==''
|
|
205
|
+
destination = File.expand_path(destination)
|
|
205
206
|
|
|
206
207
|
puts "Deploying #{@artefacts.length} build artefacts to #{destination}..."
|
|
207
208
|
artefact_map(destination).each { |src, dest| FileUtils.cp(src,dest) }
|
data/lib/revision/version.rb
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Defines the revision ID for the revision gem
|
|
2
2
|
module Revision
|
|
3
|
-
VERSION = "1.2.
|
|
3
|
+
VERSION = "1.2.7"
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
# <BEGIN CHANGELOG>
|
|
7
7
|
#
|
|
8
|
+
# Version 1.2.7 (17 May 2019)
|
|
9
|
+
# - 'deploy' now expands '~' in paths
|
|
10
|
+
#
|
|
8
11
|
# Version 1.2.6 (17 May 2019)
|
|
9
12
|
# - Updated deploy to use default dest from yaml (if specified)
|
|
10
13
|
#
|