platinum-deployer 0.2.5 → 0.2.6
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 +4 -3
- data/exe/platinum +1 -1
- 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: d18d580e1e126092116de31f3a6b5aace0cb61e4
|
|
4
|
+
data.tar.gz: 61ba3858576b9786d75b218ef7834d3738c6cf6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45ab7f030653f678aabc72246db37b9e7b860e797ea33579b486b906165bd7a4143dc33826e030dcbd9e3933a030bb8afbb3391dd8b80effe8b438144d93b170
|
|
7
|
+
data.tar.gz: 5be212d30a2388a9ce67a51b3c8be3f0bd281baa6ec8dc7c8d4d943907b64cf9094591778096e7a124a06430d7a449ddda5a2a1c7862bd7acc1da921440bd977
|
data/Session.vim
CHANGED
|
@@ -49,12 +49,12 @@ setlocal fml=1
|
|
|
49
49
|
setlocal fdn=20
|
|
50
50
|
setlocal fen
|
|
51
51
|
silent! normal! zE
|
|
52
|
-
let s:l =
|
|
52
|
+
let s:l = 3 - ((2 * winheight(0) + 14) / 28)
|
|
53
53
|
if s:l < 1 | let s:l = 1 | endif
|
|
54
54
|
exe s:l
|
|
55
55
|
normal! zt
|
|
56
|
-
|
|
57
|
-
normal!
|
|
56
|
+
3
|
|
57
|
+
normal! 020|
|
|
58
58
|
wincmd w
|
|
59
59
|
argglobal
|
|
60
60
|
edit bin/setup
|
|
@@ -92,6 +92,7 @@ normal! zt
|
|
|
92
92
|
294
|
|
93
93
|
normal! 03|
|
|
94
94
|
wincmd w
|
|
95
|
+
3wincmd w
|
|
95
96
|
exe '1resize ' . ((&lines * 28 + 30) / 60)
|
|
96
97
|
exe 'vert 1resize ' . ((&columns * 52 + 92) / 185)
|
|
97
98
|
exe '2resize ' . ((&lines * 28 + 30) / 60)
|
data/exe/platinum
CHANGED
|
@@ -561,7 +561,7 @@ if @command
|
|
|
561
561
|
focus_terminal!
|
|
562
562
|
# Force a git commit upfront.
|
|
563
563
|
force_git_commit! if build_cmd_opts[:target] =~ /^dist/
|
|
564
|
-
return
|
|
564
|
+
return compile_source! && build_with_xcode! if build_cmd_opts[:run_with_xcode]
|
|
565
565
|
deploy! if compile_source! && build! # Compile, build and deploy.
|
|
566
566
|
when 'list' then list_things!
|
|
567
567
|
when 'satellite'
|