platinum-deployer 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d18d580e1e126092116de31f3a6b5aace0cb61e4
4
- data.tar.gz: 61ba3858576b9786d75b218ef7834d3738c6cf6e
3
+ metadata.gz: 771d63def6e9af1b9259275791ac9f7e5e3df06a
4
+ data.tar.gz: e9ecbe1c874a0266f6e31aa8e52d9d45fe1f1b54
5
5
  SHA512:
6
- metadata.gz: 45ab7f030653f678aabc72246db37b9e7b860e797ea33579b486b906165bd7a4143dc33826e030dcbd9e3933a030bb8afbb3391dd8b80effe8b438144d93b170
7
- data.tar.gz: 5be212d30a2388a9ce67a51b3c8be3f0bd281baa6ec8dc7c8d4d943907b64cf9094591778096e7a124a06430d7a449ddda5a2a1c7862bd7acc1da921440bd977
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 = 294 - ((15 * winheight(0) + 14) / 29)
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
- 294
93
- normal! 03|
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 {control down, command down}' ]
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
- return compile_source! && build_with_xcode! if build_cmd_opts[:run_with_xcode]
565
- deploy! if compile_source! && build! # Compile, build and deploy.
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?
@@ -1,5 +1,5 @@
1
1
  module Platinum
2
2
  module Deployer
3
- VERSION = "0.2.6"
3
+ VERSION = "0.2.7"
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.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith