shaddox 0.0.27 → 0.0.28

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: 5caad1fcc74a7752cb5d2a9e02ede30afaf55d80
4
- data.tar.gz: d989427549f26b16699cd819054900201fb9e275
3
+ metadata.gz: d59b021bd1708d0354bdacebb46d31bff97ad9e5
4
+ data.tar.gz: 5775aaf92ba995a645cccbb1abd741e53b5eb2ca
5
5
  SHA512:
6
- metadata.gz: f377d28e670b495dd19726398aac71b8ddf23265688ac1cbf1dc478860f5c9bb4524d8b0de7eaf62791e63907bbe655b3d05df54d80fd7909a0e1825eb821328
7
- data.tar.gz: 9912d7f4d22c88723af5c6aa44556c9eadde30f40115d20cc0e6085977499a4d76d43a93e3bc3725f0563f48cb320766405ec38ae42ee55c0087c4cc7d4ab0e8
6
+ metadata.gz: 3c047c92ca6f6ccd142afe0a88ba66f86dd8151498d7dbe306c27fc5112650c2904410f9b12a1c6d8a8ca5608a143e1127a96a3a79e433c817f7d88c98e8d9d9
7
+ data.tar.gz: 48569294f88dc6b5e0fe170c329e357a5a06ea3ca5a76a6fe9525d4594bcb82695ade9c74ff4e4ae7926b7cedca884aae757c162af5cb13c3f2407a1d59c5a1f
@@ -58,7 +58,6 @@ module Shaddox
58
58
  ensure_parent_dir(source)
59
59
  ensure_parent_dir(dest)
60
60
  info "Linking '#{source.exp_path}' to '#{dest.exp_path}'", 1 if @debug
61
- info "... in dir #{Dir.pwd}", 1 if @debug
62
61
  FileUtils::ln_s(source.exp_path, dest.exp_path, opts)
63
62
  end
64
63
 
@@ -116,12 +115,12 @@ module Shaddox
116
115
  # Link shared paths
117
116
  info 'Linking shared paths', 1 if @debug
118
117
  repo.shared.each do |shared_path|
119
- ln_s "#{release_path}/#{shared_path}", "./shared/#{shared_path}"
118
+ ln_s "./shared/#{shared_path}", "#{release_path}/#{shared_path}"
120
119
  end
121
120
 
122
121
  # Link ./current to the latest release
123
122
  info 'Linking current to latest release', 1 if @debug
124
- ln_s './current', release_path
123
+ ln_s release_path, './current'
125
124
  end
126
125
  end
127
126
 
@@ -1,3 +1,3 @@
1
1
  module Shaddox
2
- VERSION = "0.0.27"
2
+ VERSION = "0.0.28"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shaddox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.27
4
+ version: 0.0.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - joshglendenning