capistrano-distribution 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b6cfa088d3f36dc855dfa2811506b3f7b73ddd5
4
- data.tar.gz: 0618b1d4a27be2f40f120d72b1c492b50dc872f1
3
+ metadata.gz: 6b5fd269820e7ffdf412ec37e1be04ed6607310d
4
+ data.tar.gz: 25658a29606b080f8146d791f14b5cc4cd856382
5
5
  SHA512:
6
- metadata.gz: f8265a2d57e8cd86fe35897b373f014e29c1fb6c318573cd856e8e83a5e2fa33a99c3a3ec3b541e7779d4b3f0e889ef59bf123b5edacba5970effbb38840f6e4
7
- data.tar.gz: f099a63ec628f92cf561be9c334438b5d431de91326c5b83948428d59b1666d44f3482661c60dfba656feada2a489745f2888c038f488896d94828caf69b25d7
6
+ metadata.gz: 14d47c18b3b63f71fea95da8b8f61e32a43c4052428271c42eb787446d3ad447dee3db23b82e6806d2194b7fbf394d120f2f427b0b3b31d4434fda2f1839c13f
7
+ data.tar.gz: 59d534180cd3b12ec21429329028c0ca55d5e2529f471ad531d376e895758df0884c49cef4be1855b07df2ca52e26bcc47612d5cc5372a280199cd8701738241
data/NEWS.md CHANGED
@@ -6,6 +6,10 @@ detailed information is available in the rest of the documentation.
6
6
  **NOTE:** Date stamps in the following entries are in YYYY/MM/DD format.
7
7
 
8
8
 
9
+ ## v0.4.1 (2016/03/15)
10
+
11
+ * Do not try to work within the repo directory since it may not exist.
12
+
9
13
  ## v0.4.0 (2016/03/15)
10
14
 
11
15
  * Create workspace for downloaded ZIP files before downloading them.
@@ -3,7 +3,7 @@ module Capistrano
3
3
  class Distribution
4
4
  ##
5
5
  # The release version of this gem.
6
- VERSION = '0.4.0'
6
+ VERSION = '0.4.1'
7
7
  end
8
8
 
9
9
  end
@@ -13,9 +13,7 @@ namespace :distribution do
13
13
  desc 'Distribute the artifacts'
14
14
  task :create_release do
15
15
  on release_roles(:all), fetch(:distribution_runner_opts) do
16
- within repo_path do
17
- distribution.distribute
18
- end
16
+ distribution.distribute
19
17
  end
20
18
  end
21
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-distribution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Bopp