platinum-deployer 0.3.1 → 0.3.2

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: 459e80daa645cbe5ea103ee01d598f4a968ce620
4
- data.tar.gz: 363907ead734456b7302916936bacebce66b33e3
3
+ metadata.gz: 696b8fb3ef3a98944c11ffe2405fcc93545fca75
4
+ data.tar.gz: 3840fcb516752c1c03ff0be46395d57e566c492a
5
5
  SHA512:
6
- metadata.gz: 10a1451aafad54604a41090cba63ff57fc9d714a0b76eb5417e24035f9c3cc81566b9d96295ce3d6085203ce6dab91ccdcc652d9efb819ff9f06c416166e1d7a
7
- data.tar.gz: d0bf82dbb11d1b55833f8aee4a65229e967bc674a87793971038ef489ff5172951c400a4556a296987709afb8c495597458ebe950804a9a9f73e34c0d3f4ef06
6
+ metadata.gz: 5165407af630dcb361ec4491b9e2642dc0cd9d22502d9f937275400ed9d54257d933bd4a388d9bf2f91bd0f54c54a2f7fd3dd8126a954c84f7cb2b4b93a58d4e
7
+ data.tar.gz: 8ea6aa8031d69c0932e0b1fed224dd47456de5a8895883494655bee53fad55981d32fb31aa967f14e80143d2c9d666707e54ec336ec06a1e7a98a0fc492dbe4f
data/Session.vim CHANGED
@@ -85,13 +85,14 @@ setlocal fml=1
85
85
  setlocal fdn=20
86
86
  setlocal fen
87
87
  silent! normal! zE
88
- let s:l = 530 - ((10 * winheight(0) + 17) / 35)
88
+ let s:l = 526 - ((6 * winheight(0) + 17) / 35)
89
89
  if s:l < 1 | let s:l = 1 | endif
90
90
  exe s:l
91
91
  normal! zt
92
- 530
92
+ 526
93
93
  normal! 048|
94
94
  wincmd w
95
+ 3wincmd w
95
96
  exe '1resize ' . ((&lines * 24 + 31) / 62)
96
97
  exe 'vert 1resize ' . ((&columns * 139 + 136) / 272)
97
98
  exe '2resize ' . ((&lines * 24 + 31) / 62)
data/exe/platinum CHANGED
@@ -527,12 +527,12 @@ def update_satellite!
527
527
  system %[diskutil unmount "#{app_src_fullpath}"] if mounted_as_satellite?
528
528
  log_info 'Pulling changes from Git...'
529
529
  # Delete local app dir contents before pulling to avoid conflicts with new files.
530
- FileUtils.rm_rf File.join(Dir.pwd, 'app', '*')
530
+ FileUtils.rm_rf Dir.glob(File.join(Dir.pwd, 'app', '*'))
531
531
  git = Git.open '.'
532
532
  git.reset_hard
533
533
  git.pull
534
534
  log_info 'Remounting app_src to remote source...'
535
- FileUtils.rm_rf File.join(Dir.pwd, 'app_src', '*')
535
+ FileUtils.rm_rf Dir.glob(File.join(Dir.pwd, 'app_src', '*'))
536
536
  mount_as_satellite!
537
537
 
538
538
  puts; log_success 'Satellite installation updated!'; puts
@@ -1,5 +1,5 @@
1
1
  module Platinum
2
2
  module Deployer
3
- VERSION = "0.3.1"
3
+ VERSION = "0.3.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: platinum-deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-23 00:00:00.000000000 Z
11
+ date: 2015-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler