escobar 0.1.14 → 0.1.15
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/lib/escobar/heroku/pipeline.rb +1 -1
- data/lib/escobar/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e9817c7bf531621f8aa0d3d288cd876af2e3c4c
|
|
4
|
+
data.tar.gz: f44511d3e9b7008734a24017433b696000b9ac32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 437e7d484f3b33bc6037425d6cf50157ee13f840bbbc1a7b15b6bca0a6a5a3d7cea1beb4f49c347aa47a3735e5de239df656c7d2ed23666509aaf4681bae4781
|
|
7
|
+
data.tar.gz: 8589054a3ee774f0ee20f67b01f6354a2d79f715794d4c194c4cadad81b222f0386a8bbef4eafeece84c7a010a41571a00db943ebc65096bd8bb425366b3a9c5
|
|
@@ -104,7 +104,7 @@ module Escobar
|
|
|
104
104
|
# rubocop:disable Metrics/LineLength
|
|
105
105
|
def create_deployment(ref, environment, force)
|
|
106
106
|
app = environments[environment] && environments[environment].last
|
|
107
|
-
return({ error: "No #{environment} for #{name}." }) unless app
|
|
107
|
+
return({ error: "No '#{environment}' environment for #{name}." }) unless app
|
|
108
108
|
|
|
109
109
|
github_deployment = create_github_deployment("deploy", ref, environment, force)
|
|
110
110
|
return({ error: github_deployment["message"] }) unless github_deployment["sha"]
|
data/lib/escobar/version.rb
CHANGED