platinum-deployer 0.2.2 → 0.2.3
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 +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: edbba1825c522a6da9f7e0047f4c6720b0a45186
|
4
|
+
data.tar.gz: 839f7d7e27f734163e409bda56364507441a50d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a865efe77a8aba27fd0d63631848db17a17a3b449710415c21cf9639723757060d9c7054085a7f1b85edc59528da9bbde0e4a1cd141b3fba8697fff4b0708e08
|
7
|
+
data.tar.gz: 00570106a19d258088849fefb15dec45d504c867fe51f94c078a9b5e052d4805e99cdfb8637244c1f74b48e3e5cdfdcf2f0d4572008aa43c876ef46e2781a014
|
data/Session.vim
CHANGED
@@ -85,14 +85,13 @@ 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 = 415 - ((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
|
+
415
|
93
|
+
normal! 049|
|
94
94
|
wincmd w
|
95
|
-
3wincmd w
|
96
95
|
exe '1resize ' . ((&lines * 28 + 30) / 60)
|
97
96
|
exe 'vert 1resize ' . ((&columns * 52 + 92) / 185)
|
98
97
|
exe '2resize ' . ((&lines * 28 + 30) / 60)
|
data/exe/platinum
CHANGED
@@ -412,7 +412,7 @@ end
|
|
412
412
|
alias deploy_to_simulator! deploy_to_emulator!
|
413
413
|
def focus_terminal!
|
414
414
|
# TODO: support for platforms besides OS X and iTerm
|
415
|
-
system 'osascript -e \'tell application "
|
415
|
+
system 'osascript -e \'tell application "iTerm" to activate\'' end
|
416
416
|
def focus_simulator!
|
417
417
|
# TODO: support for platforms besides OS X
|
418
418
|
system 'osascript -e \'tell application "iOS Simulator" to activate\'' end
|