dpl 2.0.0.alpha.10 → 2.0.0.alpha.11
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/dpl/assets/dpl/README.erb.md +1 -1
- data/lib/dpl/ctx/bash.rb +2 -2
- data/lib/dpl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ba68fce5870eaeac0c1e4c74d465dc07cb175af
|
4
|
+
data.tar.gz: 316f8df515e0bc49d063cbd4e9d3bcbffcb8ec5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f845fb809ac11e6eba9117b61ab17d97c84773123b59c5fa5a72ee7f2d5c624b2d2a5ac3709b96ecdf512a68b340b004f816daea04e2c0c95f407ed13ca18e09
|
7
|
+
data.tar.gz: 19fc9e90946bc5ac26fc255f1e174af78c3e65b1ee917645aeb5413da2a6be0cefc3846496a427d358613aeba4695aa82fe2408546f6a802887689f2fa18accd
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Dpl [](https://travis-ci.com/travis-ci/dpl) [](https://travis-ci.com/travis-ci/dpl) [](https://codeclimate.com/github/travis-ci/dpl) [](https://coveralls.io/github/travis-ci/dpl?branch=master) [](http://rubygems.org/gems/dpl) [](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 [](https://travis-ci.com/travis-ci/dpl) [](https://travis-ci.com/travis-ci/dpl) [](https://codeclimate.com/github/travis-ci/dpl) [](https://coveralls.io/github/travis-ci/dpl?branch=master) [](http://rubygems.org/gems/dpl) [](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
|
-
|
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
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.
|
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-
|
13
|
+
date: 2019-10-14 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: cl
|