platinum-deployer 0.2.7 → 0.2.8
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 +7 -7
- 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: dacdf8eeb5e68ca36155608de081883062ba96e4
|
4
|
+
data.tar.gz: afce813801e394f83fb09c33e578a62d47520350
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4b2cbb6c62530fef2bb0144bbd9d00f15ff8cd61567b3c00496a0c4b4fd7a424e9e2611486e62cb517eae4b44e417d9958a72bdb4a536a213cff4ef356d7720
|
7
|
+
data.tar.gz: 56b8ff89a9fac88a955f0b0477980e312757480bd0242086575756d201b1bd68ac1344abf67b7539d80aaad30f872a3dca29be0420d6f257c25dd30d86cf828f
|
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 = 457 - ((7 * 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
|
+
457
|
93
|
+
normal! 042|
|
94
94
|
wincmd w
|
95
95
|
3wincmd w
|
96
96
|
exe '1resize ' . ((&lines * 28 + 30) / 60)
|
data/exe/platinum
CHANGED
@@ -311,7 +311,7 @@ end
|
|
311
311
|
|
312
312
|
def build!
|
313
313
|
if @options[:skip_build]; log_info 'Skipping build.'; return true end
|
314
|
-
return build_with_xcode! if build_cmd_opts[:run_with_xcode]
|
314
|
+
# return build_with_xcode! if build_cmd_opts[:run_with_xcode]
|
315
315
|
log_info 'Building Titanium project...'; puts
|
316
316
|
build_success = case build_cmd_opts[:target]
|
317
317
|
when 'device' then build_for_device!
|
@@ -378,7 +378,7 @@ def deploy_to_emulator!
|
|
378
378
|
|
379
379
|
case build_cmd_opts[:platform]
|
380
380
|
when 'ios'
|
381
|
-
if build_cmd_opts[:run_with_xcode] then
|
381
|
+
if build_cmd_opts[:run_with_xcode] then build_with_xcode!
|
382
382
|
else
|
383
383
|
if sim_opts[:devicetypeid].nil?
|
384
384
|
devicetypes = `ios-sim showdevicetypes`.strip
|
@@ -561,11 +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
|
-
if build_cmd_opts[:run_with_xcode]
|
565
|
-
|
566
|
-
else
|
567
|
-
|
568
|
-
end
|
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
|
569
569
|
when 'list' then list_things!
|
570
570
|
when 'satellite'
|
571
571
|
unless ARGV.any?
|