convox_installer 1.0.4 → 1.0.5

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
  SHA256:
3
- metadata.gz: c61afa4dfbb14346d5dc9c07eb23eca17eb1e612c8fe659c74d78fc154810479
4
- data.tar.gz: b85f7bf5513cad08955f4a7ebc8c66f35ef0995d1d481bb2779af069a2980d0b
3
+ metadata.gz: 5345711a90e7cecdec9c71515d69d3f95fd4c0affb22f1d051df39fec2516ee8
4
+ data.tar.gz: c5a13ba2debfe09fc3fbd12e42122ff634c8c79c4b71998a6fb0b2918151e568
5
5
  SHA512:
6
- metadata.gz: f4878d00fbe6b6111a8c316f6eb6c691f11ee5b5846628b46e1dde39eea2f2b6c510951f924e1ca51002808cdaba9662af70cd2be618627d25af94e1cb8a1a67
7
- data.tar.gz: 9340387ce40c3ee1d41823ccc5c959638172944161c3f6ea3c74f8048d5d53706770bffcdf08f3fc464dac5543abd8f4c3f79584555da2be2f4d684fe5f083a3
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-Route-ABCDFE123456-123456789.us-west-2.convox.site`
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
- "#{app}-#{service}.#{elb_name_and_region}.convox.site"
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConvoxInstaller
4
- VERSION = "1.0.4"
4
+ VERSION = "1.0.5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: convox_installer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Form Applications Inc.