shiprails 0.1.3 → 0.1.4

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
  SHA1:
3
- metadata.gz: 28af16b909d11b28918e790adf1870161316d4be
4
- data.tar.gz: fe9d5f7c3a16ff51b4f2410023966e3f67f95560
3
+ metadata.gz: c41f419db3aec35abe63a8626d686127b848d811
4
+ data.tar.gz: 8a846097d99b22a449d23554db3e5434592634ad
5
5
  SHA512:
6
- metadata.gz: 9a69f4c437c21f9065acba4bc39d134631c2e7cb60091c83f4440640029793ea8b3f79989237dfff17b9b96c7451865a2002a501dbe3ab3f3882ef64ff68466f
7
- data.tar.gz: 77c732f07e7fe71a84fb6383158fc639485b352353ad4763d643f52dfddb65261ad20206d2947340cd417ae1c5b09631ca47d36a6ec475e981e9fe1a96d6b51c
6
+ metadata.gz: 0ea5aa16a9840fc0bcd813a078f94a30c372d512bda15d99be5490a7d5aa144b83d1ef6d9b5d1c3f3697b488c115cc65e609f86cf00868d139c338c4917c0310
7
+ data.tar.gz: 08272990a67c8fa99cab6258ae71a296b9893386e1dd215423e065d8c26d12ff96bb5fbaae95e99a228193cd3e741860c14b1adf9c88ea75b734c1a76fce2def
@@ -32,7 +32,7 @@ module Shiprails
32
32
  next unless args.empty? or args.include?(environment_name)
33
33
  result = `S3_CONFIG_BUCKET=#{s3_config_bucket} bundle exec config list #{environment_name}`
34
34
  s3_config_revision = result.match(/#{environment_name} \(v([0-9]+)\)/)[1] rescue 0
35
- commands << "docker build -t #{image_name}_#{environment_name} --build-arg AWS_ACCESS_KEY_ID='#{aws_access_key_id}' --build-arg AWS_SECRET_ACCESS_KEY='#{aws_access_key_secret}' --build-arg AWS_REGION='#{aws_region}' --build-arg S3_CONFIG_BUCKET='#{s3_config_bucket}' --build-arg S3_CONFIG_REVISION='#{s3_config_revision}' -f Dockerfile.production ."
35
+ commands << "docker build -t #{image_name}_#{environment_name} --build-arg AWS_ACCESS_KEY_ID='#{aws_access_key_id}' --build-arg AWS_SECRET_ACCESS_KEY='#{aws_access_key_secret}' --build-arg AWS_REGION='#{aws_region}' --build-arg S3_CONFIG_BUCKET='#{s3_config_bucket}' --build-arg S3_CONFIG_ENVIRONMENT='#{environment_name}' --build-arg S3_CONFIG_REVISION='#{s3_config_revision}' -f Dockerfile.production ."
36
36
  end
37
37
  end
38
38
  end
@@ -1,3 +1,3 @@
1
1
  module Shiprails
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shiprails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zane Shannon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-04-19 00:00:00.000000000 Z
11
+ date: 2017-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -187,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
187
  version: '0'
188
188
  requirements: []
189
189
  rubyforge_project:
190
- rubygems_version: 2.6.11
190
+ rubygems_version: 2.5.1
191
191
  signing_key:
192
192
  specification_version: 4
193
193
  summary: Shiprails helps you deploy Rails to AWS ECS.