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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3137913d1f2815663cd109b664abe5fdfa605a180800a41e11fc33dc2997a0c6
4
- data.tar.gz: 512af6c0a368097279366b31be82163c5b645b35a54d6827e17630ba7556eb04
3
+ metadata.gz: 682306be7408f18b9346de0b36dc9b98b1fc104209191bbb6cba601b9cba0509
4
+ data.tar.gz: 0c48f5c2952dc1a2abe7c68010d708b48a93ad3da4fc63d9d031f05846f610d0
5
5
  SHA512:
6
- metadata.gz: 9300b42431ed4d899cd7139d9e92b1df7f31b028838f463abf5558e4396154d249474a5282351ca31d0417cb126b48bafaa3049992e457a59ec85e2edc616d10
7
- data.tar.gz: '0893bc8118beb685ef3284403482575c1d1c2c73a85968cdc60234959546676409aca7456fef2242d4ac7114cfc05dabe74805c59f0074b7864558d990a51017'
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
- #+BEGIN_NOTE
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
 
@@ -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) }
@@ -1,10 +1,13 @@
1
1
  # Defines the revision ID for the revision gem
2
2
  module Revision
3
- VERSION = "1.2.6"
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
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: revision
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.6
4
+ version: 1.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cormac Cannon