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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f7683fb0c75c6507083f65a8e4e994c8776624b
4
- data.tar.gz: c116899f2c3edffcc7ee256502fdcda995cbb978
3
+ metadata.gz: fcb530232b417cf73b8efbc1c9252bb5f98b3529
4
+ data.tar.gz: fa438a504591022031114bfd124b171bde408dda
5
5
  SHA512:
6
- metadata.gz: 056b5589ce52208ccc01cb3d0c3146e3ba15f114d8450d634e18d8099a966f4ffc97e843f5816bd80b212677c49e3606f80f95e63482b60226859057c1fb526b
7
- data.tar.gz: 50495150080bdcdcd14242f297d68352a706425b328919968338c328387348076bc0f97b76b274886950ff0b7fbc0f25d855d1c6b6eadc534e77c523b4927c47
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 = 494 - ((8 * winheight(0) + 9) / 19)
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
- 494
115
- normal! 010|
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...', 1
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...', 1
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...', 1
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
@@ -1,5 +1,5 @@
1
1
  module Platinum
2
2
  module Deployer
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: platinum-deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith