platinum-deployer 0.2.6 → 0.2.7
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 -3
- data/exe/platinum +6 -3
- 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: 771d63def6e9af1b9259275791ac9f7e5e3df06a
|
4
|
+
data.tar.gz: e9ecbe1c874a0266f6e31aa8e52d9d45fe1f1b54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8b181868a540da8b1941a7b47e7a3a825ab5e3f3d2153123c5556bcc76e2bf26cb32757638ef37b8a2519094cba8c7865000443cc13b71ea475cba7ecf54f7e
|
7
|
+
data.tar.gz: 31f64db55fa3ae6d1925314689332947d892dcd2d9507fe7bcb2a23865d893a4359acc0abd505e3fbd0a10f4bd0606905aa272e4fdc46f2406c8a2f637b0e483
|
data/Session.vim
CHANGED
@@ -85,12 +85,12 @@ 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 = 565 - ((15 * winheight(0) + 14) / 29)
|
89
89
|
if s:l < 1 | let s:l = 1 | endif
|
90
90
|
exe s:l
|
91
91
|
normal! zt
|
92
|
-
|
93
|
-
normal!
|
92
|
+
565
|
93
|
+
normal! 026|
|
94
94
|
wincmd w
|
95
95
|
3wincmd w
|
96
96
|
exe '1resize ' . ((&lines * 28 + 30) / 60)
|
data/exe/platinum
CHANGED
@@ -436,7 +436,7 @@ def build_with_xcode!
|
|
436
436
|
cmd << %[-e 'tell application "Xcode"' ]
|
437
437
|
cmd << %[-e 'activate' ]
|
438
438
|
cmd << %[-e 'delay 1' -e 'tell application "System Events"' ]
|
439
|
-
cmd << %[-e 'keystroke "r" using
|
439
|
+
cmd << %[-e 'keystroke "r" using command down' ]
|
440
440
|
cmd << %[-e 'end tell' -e 'end tell']
|
441
441
|
system cmd
|
442
442
|
end
|
@@ -561,8 +561,11 @@ 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
|
-
|
565
|
-
|
564
|
+
if build_cmd_opts[:run_with_xcode]
|
565
|
+
build_with_xcode! if compile_source!
|
566
|
+
else
|
567
|
+
deploy! if compile_source! && build! # Compile, build and deploy.
|
568
|
+
end
|
566
569
|
when 'list' then list_things!
|
567
570
|
when 'satellite'
|
568
571
|
unless ARGV.any?
|