eb_deployer_updated 0.8.0 → 0.8.1

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
  SHA256:
3
- metadata.gz: b8c974d8d01b507b9e0d46aa4859350f626434b12c50d9b0d687d78eaace650a
4
- data.tar.gz: 919d802cac6b4afafdd81361262afea60cec9f8c8531285b6e2d50995bd3afa9
3
+ metadata.gz: ed67ff54b880211679c7bfce82dd1a4ea6082e0c3f2decc9c4ff0ff7e0508e3b
4
+ data.tar.gz: 6532c89f51523a0eb0c1382fb5aa3261a27c589deb0f3da406d1b406550e9256
5
5
  SHA512:
6
- metadata.gz: 43013bd6ab07142e757427def47cec62b1e5b3e3711a8514aae5ebb827ee6f80ec8afb2a5fefb2c8f408648c9c8516862554b08fce9072b77bd4ee835dd7c614
7
- data.tar.gz: 659aa0a7fc8547bcb0347cb294a37371549dc01d8b4492939accf68af85e09e3a6f3fa071ff6676e22a07a1b5c812e51c1ca47df36f075c832a132f6c200f359
6
+ metadata.gz: 6777d6d58274d13d4e8bc7470a0c3740a5143e42aa5710fdef8b06557145e206867e8f75ad87cb629ecdbac482b79f52299a1af79e826dd3697d1d4d59f675dc
7
+ data.tar.gz: f4da60334e4007bc864e867aa2f123ebd85b3609e716e27c94f91907065073d87dbe3450f2dd60b88606e6ea923d1f6614e1c133e738dce192795fe52a21c7e1
data/bin/eb_deploy CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  git_path = File.join(File.expand_path('../..', __FILE__), '.git')
4
4
 
5
- if File.exists?(git_path)
5
+ if File.exist?(git_path)
6
6
  lib_path = File.expand_path('../../lib', __FILE__)
7
7
  $:.unshift(lib_path)
8
8
  end
@@ -13,7 +13,7 @@ namespace :eb do
13
13
 
14
14
  def eb_package_files
15
15
  ignore_file = File.join(Dir.pwd, ".ebdeployerignore")
16
- ignore_patterns = File.exists?(ignore_file) ? File.readlines(ignore_file).map(&:strip) : []
16
+ ignore_patterns = File.exist?(ignore_file) ? File.readlines(ignore_file).map(&:strip) : []
17
17
  `git ls-files`.lines.reject { |f| ignore_patterns.any? { |p| File.fnmatch(p, f.strip) } }
18
18
  end
19
19
 
@@ -1,3 +1,3 @@
1
1
  module EbDeployer
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eb_deployer_updated
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - wpc