convox_installer 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4aa7edf7f211c8c4fabf9f11c189b8634e16f6345771aa84ea3d68a94171474e
4
- data.tar.gz: 188957c8d8471ba8d9cb39356cd5ef1f051b4f515a0b7de955a092edfe0b2188
3
+ metadata.gz: 17cad3f4b73806ac2ed58a97ab6434e79dec6ef71ca6d569118fe5366e7ff195
4
+ data.tar.gz: 8ab6d4b135cc5716688ae59519ea85f3600736a9b30cc851ae21c62502f7fefb
5
5
  SHA512:
6
- metadata.gz: 1fb7fe4c0522649b7b4850f5270d58c6eb2e7df7e27919e27f4d5b4e51a0869a3406096ae1ebe4e44cfc69047c9b12c64e86a7ad5ef77b82ce0bb5b6bd1dab31
7
- data.tar.gz: 136b4634a4be218eb349f07d3dc04ff868d09e1da3fda18b35effd277ec1e256cdd35ddd49628f1436d904796e325f25517e1666e7e64cd9c0e94e74bb175ea6
6
+ metadata.gz: '08989fb82a81ab02b996852abdbd58319e5bf50f2ce4c44ea44824e4cd798e0b73b785739f445c7ea66b211e925edc5161e0c6bf98b637d58af6b5d4c19f2bf7'
7
+ data.tar.gz: a20b0ebcc13e2be8fad48940dc970181e9faa76af1b1e8832759cfb3c22b21a972ab6d4a4c4389a84f1c401b0876e4d6deb9a3232e0434615db076322295294e
@@ -223,7 +223,7 @@ module Convox
223
223
 
224
224
  retries = 0
225
225
  loop do
226
- return if s3_bucket_exists?
226
+ break if s3_bucket_exists?
227
227
 
228
228
  if retries > 10
229
229
  raise "Something went wrong while creating the #{bucket_name} S3 bucket! " \
@@ -37,6 +37,7 @@ module ConvoxInstaller
37
37
  create_convox_app!
38
38
  set_default_app_for_directory!
39
39
  create_s3_bucket!
40
+ set_s3_bucket_cors_policy
40
41
  add_docker_registry!
41
42
  s3_bucket_details
42
43
  convox_rack_data
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConvoxInstaller
4
- VERSION = '1.0.0'
4
+ VERSION = "1.0.1"
5
5
  end
data/release ADDED
@@ -0,0 +1,4 @@
1
+ #!/bin/bash
2
+ rm -f convox_installer-*.gem
3
+ gem build convox_installer.gemspec
4
+ gem push convox_installer-*.gem
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.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Form Applications Inc.
@@ -104,6 +104,7 @@ files:
104
104
  - lib/convox_installer/requirements.rb
105
105
  - lib/convox_installer/version.rb
106
106
  - log/.gitkeep
107
+ - release
107
108
  - spec/lib/convox/client_spec.rb
108
109
  - spec/lib/convox_installer/config_spec.rb
109
110
  - spec/lib/convox_installer/requirements_spec.rb