convox_installer 1.0.4 → 1.0.5
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/README.md +1 -1
- data/lib/convox/client.rb +2 -1
- data/lib/convox_installer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5345711a90e7cecdec9c71515d69d3f95fd4c0affb22f1d051df39fec2516ee8
|
|
4
|
+
data.tar.gz: c5a13ba2debfe09fc3fbd12e42122ff634c8c79c4b71998a6fb0b2918151e568
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 796672165a830c97015603c1679d678205ca47fbb3a01d06521f799b70b6fee7953d5869dac59b01b4a4653400f071932fb0c532cf0e85b193018155ce5a2395
|
|
7
|
+
data.tar.gz: d274bbddfb216fe0201b4c4b55143ef52f1eb45cc1863ec9bb8791ae86ff034449a94e1138736462d18c01c1750f094f6a7a34dc2e3c7c613fb11abb818ad25c
|
data/README.md
CHANGED
|
@@ -250,7 +250,7 @@ Checks the list of registries to see if `docker_registry_url` has already been a
|
|
|
250
250
|
|
|
251
251
|
Parses the rack router ELB name and region, and returns the default `convox.site` domain for your default service. (You can visit this URL in the browser to access your app.)
|
|
252
252
|
|
|
253
|
-
Example: `myapp-web.rackname-
|
|
253
|
+
Example: `myapp-web.rackname-route-abcdfe123456-123456789.us-west-2.convox.site`
|
|
254
254
|
|
|
255
255
|
Set a default service in your config prompts (e.g. `web`):
|
|
256
256
|
|
data/lib/convox/client.rb
CHANGED
|
@@ -375,7 +375,8 @@ module Convox
|
|
|
375
375
|
app = config.fetch(:convox_app_name)
|
|
376
376
|
service = config.fetch(:default_service)
|
|
377
377
|
|
|
378
|
-
|
|
378
|
+
# Need to return downcase host so that `config.hosts` works with Rails applications
|
|
379
|
+
"#{app}-#{service}.#{elb_name_and_region}.convox.site".downcase
|
|
379
380
|
end
|
|
380
381
|
end
|
|
381
382
|
|