dpl 2.0.0.alpha.10 → 2.0.0.alpha.11

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: 003cfee325bc454ee88129b538430b6a469be380
4
- data.tar.gz: 320164315ea404214e30f3e0a81fad81a7d10285
3
+ metadata.gz: 2ba68fce5870eaeac0c1e4c74d465dc07cb175af
4
+ data.tar.gz: 316f8df515e0bc49d063cbd4e9d3bcbffcb8ec5c
5
5
  SHA512:
6
- metadata.gz: a2f13a6a9497cb298f30d68d4d20513f97149af65392b94fdc673787812cd31e0254c54c7cc18b8e5f8dfc370b831cc52691e6d779f824b93b4185bba92dc4fa
7
- data.tar.gz: 17649221bb6d51b291855d8fcc0540a884ebb93fa940b1f6c36d6f7b80e40e672250a1f9cbd1c17f0c585683fe496f06c3ab03c78fe13081df8d605acf80dbed
6
+ metadata.gz: f845fb809ac11e6eba9117b61ab17d97c84773123b59c5fa5a72ee7f2d5c624b2d2a5ac3709b96ecdf512a68b340b004f816daea04e2c0c95f407ed13ca18e09
7
+ data.tar.gz: 19fc9e90946bc5ac26fc255f1e174af78c3e65b1ee917645aeb5413da2a6be0cefc3846496a427d358613aeba4695aa82fe2408546f6a802887689f2fa18accd
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dpl (2.0.0.alpha.9)
4
+ dpl (2.0.0.alpha.10)
5
5
  cl (~> 1.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Dpl [![Build Status](https://travis-ci.com/travis-ci/dpl.svg?branch=master)](https://travis-ci.com/travis-ci/dpl) [![Code Climate](https://codeclimate.com/github/travis-ci/dpl.png)](https://codeclimate.com/github/travis-ci/dpl) [![Coverage Status](https://coveralls.io/repos/travis-ci/dpl/badge.svg?branch=master&service=github&cache=2019-08-09_17:00)](https://coveralls.io/github/travis-ci/dpl?branch=master) [![Gem Version](https://img.shields.io/gem/v/dpl)](http://rubygems.org/gems/dpl) [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/travis-ci/dpl)
1
+ # Dpl [![Build Status](https://travis-ci.com/travis-ci/dpl.svg?branch=master)](https://travis-ci.com/travis-ci/dpl) [![Code Climate](https://codeclimate.com/github/travis-ci/dpl.svg)](https://codeclimate.com/github/travis-ci/dpl) [![Coverage Status](https://coveralls.io/repos/travis-ci/dpl/badge.svg?branch=master&service=github&cache=2019-08-09_17:00)](https://coveralls.io/github/travis-ci/dpl?branch=master) [![Gem Version](https://img.shields.io/gem/v/dpl)](http://rubygems.org/gems/dpl) [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/travis-ci/dpl)
2
2
 
3
3
  This version of the README documents dpl v2, the next major version of dpl.
4
4
  The REAMDE for dpl v1, the version that is currently used in production on
@@ -1,4 +1,4 @@
1
- # Dpl [![Build Status](https://travis-ci.com/travis-ci/dpl.svg?branch=master)](https://travis-ci.com/travis-ci/dpl) [![Code Climate](https://codeclimate.com/github/travis-ci/dpl.png)](https://codeclimate.com/github/travis-ci/dpl) [![Coverage Status](https://coveralls.io/repos/travis-ci/dpl/badge.svg?branch=master&service=github&cache=2019-08-09_17:00)](https://coveralls.io/github/travis-ci/dpl?branch=master) [![Gem Version](https://img.shields.io/gem/v/dpl)](http://rubygems.org/gems/dpl) [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/travis-ci/dpl)
1
+ # Dpl [![Build Status](https://travis-ci.com/travis-ci/dpl.svg?branch=master)](https://travis-ci.com/travis-ci/dpl) [![Code Climate](https://codeclimate.com/github/travis-ci/dpl.svg)](https://codeclimate.com/github/travis-ci/dpl) [![Coverage Status](https://coveralls.io/repos/travis-ci/dpl/badge.svg?branch=master&service=github&cache=2019-08-09_17:00)](https://coveralls.io/github/travis-ci/dpl?branch=master) [![Gem Version](https://img.shields.io/gem/v/dpl)](http://rubygems.org/gems/dpl) [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/travis-ci/dpl)
2
2
 
3
3
  This version of the README documents dpl v2, the next major version of dpl.
4
4
  The REAMDE for dpl v1, the version that is currently used in production on
data/lib/dpl/ctx/bash.rb CHANGED
@@ -410,9 +410,9 @@ module Dpl
410
410
  `git log #{git_sha} -n 1 --pretty=%ae`.chomp
411
411
  end
412
412
 
413
- # Whether or not the git working directory is dirty
413
+ # Whether or not the git working directory is dirty or has new or deleted files
414
414
  def git_dirty?
415
- !Kernel.system('git diff --quiet')
415
+ !`git status --short`.chomp.empty?
416
416
  end
417
417
 
418
418
  # Returns the output of `git log`, using the given args.
data/lib/dpl/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dpl
2
- VERSION = '2.0.0.alpha.10'
2
+ VERSION = '2.0.0.alpha.11'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dpl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.alpha.10
4
+ version: 2.0.0.alpha.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-10-09 00:00:00.000000000 Z
13
+ date: 2019-10-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: cl