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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 771d63def6e9af1b9259275791ac9f7e5e3df06a
4
- data.tar.gz: e9ecbe1c874a0266f6e31aa8e52d9d45fe1f1b54
3
+ metadata.gz: dacdf8eeb5e68ca36155608de081883062ba96e4
4
+ data.tar.gz: afce813801e394f83fb09c33e578a62d47520350
5
5
  SHA512:
6
- metadata.gz: b8b181868a540da8b1941a7b47e7a3a825ab5e3f3d2153123c5556bcc76e2bf26cb32757638ef37b8a2519094cba8c7865000443cc13b71ea475cba7ecf54f7e
7
- data.tar.gz: 31f64db55fa3ae6d1925314689332947d892dcd2d9507fe7bcb2a23865d893a4359acc0abd505e3fbd0a10f4bd0606905aa272e4fdc46f2406c8a2f637b0e483
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 = 565 - ((15 * winheight(0) + 14) / 29)
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
- 565
93
- normal! 026|
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 run_with_xcode!
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
- build_with_xcode! if compile_source!
566
- else
567
- deploy! if compile_source! && build! # Compile, build and deploy.
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?
@@ -1,5 +1,5 @@
1
1
  module Platinum
2
2
  module Deployer
3
- VERSION = "0.2.7"
3
+ VERSION = "0.2.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: platinum-deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith