dpl 2.0.3.beta.2 → 2.0.3.beta.3
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/lib/dpl/providers/pages/git.rb +2 -3
- data/lib/dpl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b0f4fd2f5297366e5fed6f87f3285c250a9235a65f40d337b0c87e982408ccdb
|
|
4
|
+
data.tar.gz: d536fe5a971248e8562f096a991232c440808bc8bb5c340e9b82f5bcf4fbd5c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0666a771891912ee878e5ba318ee36fe27249a3d6ad49c219c0c8fddec598098ac2a2e06f025abc35f6788d0133f4a3b36241f8932757562ea8d7823a3f72291
|
|
7
|
+
data.tar.gz: e09da57dad0a3f98e5e991d1fdbcd895b9098140181e63a52ca6dde8b64601aa04c0ac1398b5e08a1442cbd5e230597b30e8dc4c146090a3f19764c960c4124a
|
data/Gemfile.lock
CHANGED
|
@@ -68,7 +68,7 @@ module Dpl
|
|
|
68
68
|
git_commit_hook: 'cp %{path} .git/hooks/pre-commit',
|
|
69
69
|
git_commit: 'git commit %{git_commit_opts} -q %{git_commit_msg_opts}',
|
|
70
70
|
git_show: 'git show --stat-count=10 HEAD',
|
|
71
|
-
git_push: 'git push%{git_push_opts} --quiet "%{remote_url}" "%{target_branch}":"%{target_branch}"'
|
|
71
|
+
git_push: 'git push%{git_push_opts} --quiet "%{remote_url}" "%{target_branch}":"%{target_branch}" > /dev/null 2>&1'
|
|
72
72
|
|
|
73
73
|
errs copy_files: 'Failed to copy %{src_dir}.',
|
|
74
74
|
check_deploy_key: 'Failed to authenticate using the deploy key',
|
|
@@ -155,8 +155,7 @@ module Dpl
|
|
|
155
155
|
end
|
|
156
156
|
|
|
157
157
|
def git_push
|
|
158
|
-
shell
|
|
159
|
-
shell :git_push
|
|
158
|
+
shell :git_push, echo: false
|
|
160
159
|
end
|
|
161
160
|
|
|
162
161
|
def git_status
|
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.3.beta.
|
|
4
|
+
version: 2.0.3.beta.3
|
|
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: 2022-06-
|
|
13
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: cl
|