platinum-deployer 0.1.3 → 0.1.4
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/Session.vim +3 -4
- data/exe/platinum +4 -4
- data/lib/platinum/deployer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fcb530232b417cf73b8efbc1c9252bb5f98b3529
|
4
|
+
data.tar.gz: fa438a504591022031114bfd124b171bde408dda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37c1e5a4824257018221cb3811fd0fce06565a746b7ea378b043f9eb8038f665b5a989ebcc88c3d8548e98250ea81f224d32611fe3b22ef5706d47698417b592
|
7
|
+
data.tar.gz: 1763aeb1191d2ad36154541c31f44f5360947438f4ab44619bb9f10b3464af06a7da673a822029a2297cca5099a6a8017ff2599309abfd613b41d5c9bfd83a42
|
data/Session.vim
CHANGED
@@ -107,14 +107,13 @@ setlocal fml=1
|
|
107
107
|
setlocal fdn=20
|
108
108
|
setlocal fen
|
109
109
|
silent! normal! zE
|
110
|
-
let s:l =
|
110
|
+
let s:l = 504 - ((15 * winheight(0) + 9) / 19)
|
111
111
|
if s:l < 1 | let s:l = 1 | endif
|
112
112
|
exe s:l
|
113
113
|
normal! zt
|
114
|
-
|
115
|
-
normal!
|
114
|
+
504
|
115
|
+
normal! 08|
|
116
116
|
wincmd w
|
117
|
-
4wincmd w
|
118
117
|
exe '1resize ' . ((&lines * 19 + 30) / 60)
|
119
118
|
exe 'vert 1resize ' . ((&columns * 67 + 67) / 135)
|
120
119
|
exe '2resize ' . ((&lines * 19 + 30) / 60)
|
data/exe/platinum
CHANGED
@@ -490,18 +490,18 @@ def update_satellite!
|
|
490
490
|
end
|
491
491
|
log_info 'Updating satellite installation...'; puts
|
492
492
|
|
493
|
-
log_info 'Unmounting current app_src...'
|
493
|
+
log_info 'Unmounting current app_src...'
|
494
494
|
app_src_fullpath = File.expand_path File.join(Dir.pwd, 'app_src')
|
495
495
|
system %[diskutil unmount "#{app_src_fullpath}"]
|
496
|
-
log_info 'Pulling changes from Git...'
|
496
|
+
log_info 'Pulling changes from Git...'
|
497
497
|
git = Git.open '.'
|
498
498
|
git.reset_hard
|
499
499
|
git.pull
|
500
|
-
log_info 'Remounting app_src to remote source...'
|
500
|
+
log_info 'Remounting app_src to remote source...'
|
501
501
|
FileUtils.rm_rf File.join(Dir.pwd, 'app_src', '*')
|
502
502
|
system "sudo sshfs #{satellite_opts[:app_src_source]} app_src -oallow_other"
|
503
503
|
|
504
|
-
log_success 'Satellite installation updated!'; puts
|
504
|
+
puts; log_success 'Satellite installation updated!'; puts
|
505
505
|
end
|
506
506
|
|
507
507
|
if @command
|