platinum-deployer 0.3.1 → 0.3.2
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 -2
- data/exe/platinum +2 -2
- data/lib/platinum/deployer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 696b8fb3ef3a98944c11ffe2405fcc93545fca75
|
|
4
|
+
data.tar.gz: 3840fcb516752c1c03ff0be46395d57e566c492a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5165407af630dcb361ec4491b9e2642dc0cd9d22502d9f937275400ed9d54257d933bd4a388d9bf2f91bd0f54c54a2f7fd3dd8126a954c84f7cb2b4b93a58d4e
|
|
7
|
+
data.tar.gz: 8ea6aa8031d69c0932e0b1fed224dd47456de5a8895883494655bee53fad55981d32fb31aa967f14e80143d2c9d666707e54ec336ec06a1e7a98a0fc492dbe4f
|
data/Session.vim
CHANGED
|
@@ -85,13 +85,14 @@ setlocal fml=1
|
|
|
85
85
|
setlocal fdn=20
|
|
86
86
|
setlocal fen
|
|
87
87
|
silent! normal! zE
|
|
88
|
-
let s:l =
|
|
88
|
+
let s:l = 526 - ((6 * winheight(0) + 17) / 35)
|
|
89
89
|
if s:l < 1 | let s:l = 1 | endif
|
|
90
90
|
exe s:l
|
|
91
91
|
normal! zt
|
|
92
|
-
|
|
92
|
+
526
|
|
93
93
|
normal! 048|
|
|
94
94
|
wincmd w
|
|
95
|
+
3wincmd w
|
|
95
96
|
exe '1resize ' . ((&lines * 24 + 31) / 62)
|
|
96
97
|
exe 'vert 1resize ' . ((&columns * 139 + 136) / 272)
|
|
97
98
|
exe '2resize ' . ((&lines * 24 + 31) / 62)
|
data/exe/platinum
CHANGED
|
@@ -527,12 +527,12 @@ def update_satellite!
|
|
|
527
527
|
system %[diskutil unmount "#{app_src_fullpath}"] if mounted_as_satellite?
|
|
528
528
|
log_info 'Pulling changes from Git...'
|
|
529
529
|
# Delete local app dir contents before pulling to avoid conflicts with new files.
|
|
530
|
-
FileUtils.rm_rf File.join(Dir.pwd, 'app', '*')
|
|
530
|
+
FileUtils.rm_rf Dir.glob(File.join(Dir.pwd, 'app', '*'))
|
|
531
531
|
git = Git.open '.'
|
|
532
532
|
git.reset_hard
|
|
533
533
|
git.pull
|
|
534
534
|
log_info 'Remounting app_src to remote source...'
|
|
535
|
-
FileUtils.rm_rf File.join(Dir.pwd, 'app_src', '*')
|
|
535
|
+
FileUtils.rm_rf Dir.glob(File.join(Dir.pwd, 'app_src', '*'))
|
|
536
536
|
mount_as_satellite!
|
|
537
537
|
|
|
538
538
|
puts; log_success 'Satellite installation updated!'; puts
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: platinum-deployer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MacKinley Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|