ecs_helper 0.0.22 → 0.0.23

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: 2aad1449589dfa716e00c39044d4d41a26be0d6259a58dd7d3afbc12aa04f080
4
- data.tar.gz: 7adf8d5400ae6b72f1e95a6ea28eebf36680991d4159c581a4724e57e40441f2
3
+ metadata.gz: b17047bb6e73d68facd95b4fda9959d3844999d9aff387c54e7f3b2d15233f90
4
+ data.tar.gz: 8856d676db8ac4d88487a94cce680b7325ea2e461f29ba4b99b715be3d7f4d6f
5
5
  SHA512:
6
- metadata.gz: e05baf049896f3e556a782625a458ef2eb5b82700b3dec40de575d94b9052be752422bc26250e2025a91569c5a41e6f758f2ec33c2598d6d2642ac688606477b
7
- data.tar.gz: 7f1af6a600d59038880b9edb87b32f670ca52721d960b634a2da49a3c825d9e80d583bec6aa8a79d49da20c351dc44cbaad0b39857ace8af7dd8f0b2fce07c18
6
+ metadata.gz: 6021a0c6b0e063fb1ca06e14225a950e1f52c0c581ac1d2f401a4905f1298977dc0aba0910f20dd2d17e7ccb5b5c52bf1aed31ad8b76e6e942fed475d0c78963
7
+ data.tar.gz: f4c3b18c8aeefaa87b03a3adb3213c42d2816a670330a2de41f74c4a15fe9e1d251b20bffcd4a1ae93b9664b9653c4f49706fb960e9479d53b54e9bf85e72678
data/Gemfile CHANGED
@@ -2,5 +2,3 @@
2
2
 
3
3
  source 'https://rubygems.org'
4
4
  gemspec
5
-
6
- gem 'coveralls', require: false
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ecs_helper (0.0.22)
4
+ ecs_helper (0.0.23)
5
5
  aws-sdk-ecr (~> 1.42, >= 1.42)
6
6
  aws-sdk-ecrpublic (~> 1.3, >= 1.3)
7
7
  aws-sdk-ecs (~> 1.80, >= 1.80)
@@ -38,15 +38,8 @@ GEM
38
38
  climate_control (0.2.0)
39
39
  coderay (1.1.3)
40
40
  colorize (0.8.1)
41
- coveralls (0.8.23)
42
- json (>= 1.8, < 3)
43
- simplecov (~> 0.16.1)
44
- term-ansicolor (~> 1.3)
45
- thor (>= 0.19.4, < 2.0)
46
- tins (~> 1.6)
47
41
  crack (0.4.5)
48
42
  rexml
49
- docile (1.4.0)
50
43
  hashdiff (1.0.1)
51
44
  jmespath (1.4.0)
52
45
  json (2.5.1)
@@ -55,12 +48,12 @@ GEM
55
48
  parallel (1.20.1)
56
49
  parser (3.0.2.0)
57
50
  ast (~> 2.4.1)
58
- pry (0.13.1)
51
+ pry (0.14.1)
59
52
  coderay (~> 1.1)
60
53
  method_source (~> 1.0)
61
- pry-byebug (3.9.0)
54
+ pry-byebug (3.8.0)
62
55
  byebug (~> 11.0)
63
- pry (~> 0.13.0)
56
+ pry (~> 0.10)
64
57
  pry-inline (1.0.7)
65
58
  pry (> 0.10.0)
66
59
  unicode (~> 0.4.4)
@@ -83,19 +76,8 @@ GEM
83
76
  rubocop-minitest (0.15.0)
84
77
  rubocop (>= 0.90, < 2.0)
85
78
  ruby-progressbar (1.11.0)
86
- simplecov (0.16.1)
87
- docile (~> 1.1)
88
- json (>= 1.8, < 3)
89
- simplecov-html (~> 0.10.0)
90
- simplecov-html (0.10.2)
91
- sync (0.5.0)
92
- term-ansicolor (1.7.1)
93
- tins (~> 1.0)
94
79
  terrapin (0.6.0)
95
80
  climate_control (>= 0.0.3, < 1.0)
96
- thor (1.1.0)
97
- tins (1.29.1)
98
- sync
99
81
  unicode (0.4.4.4)
100
82
  unicode-display_width (2.0.0)
101
83
  webmock (3.14.0)
@@ -109,7 +91,6 @@ PLATFORMS
109
91
  DEPENDENCIES
110
92
  awesome_print
111
93
  bundler (~> 2.2)
112
- coveralls
113
94
  ecs_helper!
114
95
  minitest
115
96
  pry
@@ -31,7 +31,7 @@ class ECSHelper::Command::ExportImages < ECSHelper::Command::Base
31
31
  def export_images
32
32
  variables = (['export'] + client.private_repositories.map do |repo|
33
33
  container_name = repo.repository_name.scan(/#{project}-#{application}-(.*)/).flatten.first
34
- next if conainer_name.nil?
34
+ next if container_name.nil?
35
35
  key = container_name.upcase.gsub("-", "_") + "_IMAGE"
36
36
  value = "#{repo.repository_uri}:#{helper.version}"
37
37
  "#{key}=#{value}"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ECSHelper
4
- VERSION = '0.0.22'
4
+ VERSION = '0.0.23'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecs_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.22
4
+ version: 0.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Petrov