avm-tools 0.57.0 → 0.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/avm/tools/version.rb +1 -1
- data/vendor/eac_docker/Gemfile +5 -0
- data/vendor/eac_docker/eac_docker.gemspec +18 -0
- data/vendor/eac_docker/lib/eac_docker.rb +7 -0
- data/vendor/eac_docker/lib/eac_docker/container.rb +74 -0
- data/vendor/eac_docker/lib/eac_docker/executables.rb +18 -0
- data/vendor/eac_docker/lib/eac_docker/images.rb +9 -0
- data/vendor/eac_docker/lib/eac_docker/images/base.rb +14 -0
- data/vendor/eac_docker/lib/eac_docker/images/coded.rb +39 -0
- data/vendor/eac_docker/lib/eac_docker/images/named.rb +30 -0
- data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +26 -0
- data/vendor/eac_docker/lib/eac_docker/registry.rb +17 -0
- data/vendor/eac_docker/lib/eac_docker/rspec.rb +17 -0
- data/vendor/eac_docker/lib/eac_docker/version.rb +5 -0
- data/vendor/eac_docker/spec/lib/eac_docker/executables_spec.rb +9 -0
- data/vendor/eac_docker/spec/lib/eac_docker/images/coded_spec.rb +12 -0
- data/vendor/eac_docker/spec/lib/eac_docker/images/coded_spec_files/image1/Dockerfile +1 -0
- data/vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec.rb +17 -0
- data/vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec_files/stub_docker_image/Dockerfile +1 -0
- data/vendor/eac_docker/spec/rubocop_spec.rb +7 -0
- data/vendor/eac_docker/spec/spec_helper.rb +103 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/ssh_env.rb +12 -1
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/immutable/array_accessor.rb +4 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/immutable/hash_accessor.rb +4 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
- metadata +40 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea1f70fc2f9b43dd584ccf4519299ccf687b44ac69f0984a996ba26dc8255964
|
4
|
+
data.tar.gz: 4fdec7c63f7ec4f48f4e44fff60f5a901119a919e4f4884a90df9a436bae4368
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 620de198f99a3acb3d798f73af83cb85d48f428d1d012a3c99cf5a7ac0a4688c5ec51a927c9fe955e1605f6298f1dd05b1422e57f96220ee6f7cfe666ad229d5
|
7
|
+
data.tar.gz: a5ac202f489c02e73a8c4d0ca00102fbc35a687d8b180798d5538f4c2abe875388da0992ea4b4462cd38d25596697205dc0120b1c0f19ac2b50b7aa5d434cbbb
|
data/lib/avm/tools/version.rb
CHANGED
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
$LOAD_PATH.push File.expand_path('lib', __dir__)
|
4
|
+
|
5
|
+
require 'eac_docker/version'
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = 'eac_docker'
|
9
|
+
s.version = EacDocker::VERSION
|
10
|
+
s.authors = ['Put here the authors']
|
11
|
+
s.summary = 'Put here de description.'
|
12
|
+
|
13
|
+
s.files = Dir['{lib}/**/*']
|
14
|
+
|
15
|
+
s.add_dependency 'eac_ruby_utils', '~> 0.36'
|
16
|
+
|
17
|
+
s.add_development_dependency 'eac_ruby_gem_support', '~> 0.1', '>= 0.1.1'
|
18
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module EacDocker
|
6
|
+
class Container
|
7
|
+
enable_immutable
|
8
|
+
immutable_accessor :interactive, :temporary, :tty, type: :boolean
|
9
|
+
immutable_accessor :env, type: :hash
|
10
|
+
immutable_accessor :command_arg, :volume, type: :array
|
11
|
+
attr_reader :id
|
12
|
+
common_constructor :image
|
13
|
+
|
14
|
+
def immutable_constructor_args
|
15
|
+
[image]
|
16
|
+
end
|
17
|
+
|
18
|
+
alias immutable_volume volume
|
19
|
+
|
20
|
+
def hostname
|
21
|
+
::EacDocker::Executables.docker.command(
|
22
|
+
'inspect', '--format={{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}',
|
23
|
+
id
|
24
|
+
).execute!.strip
|
25
|
+
end
|
26
|
+
|
27
|
+
def on_detached
|
28
|
+
command = ::EacDocker::Executables.docker.command(*(%w[run --detach] + run_command_args))
|
29
|
+
self.id = command.execute!.strip
|
30
|
+
begin
|
31
|
+
yield(self)
|
32
|
+
ensure
|
33
|
+
stop
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def volume(left_part, right_part = null)
|
38
|
+
immutable_volume(right_part.if_present(left_part) { |v| "#{left_part}:#{v}" })
|
39
|
+
end
|
40
|
+
|
41
|
+
def run_command
|
42
|
+
::EacDocker::Executables.docker.command('run', *run_command_args)
|
43
|
+
end
|
44
|
+
|
45
|
+
def run_command_args
|
46
|
+
run_command_boolean_args + run_command_envs_args + run_command_volumes_args + [image.id] +
|
47
|
+
command_args
|
48
|
+
end
|
49
|
+
|
50
|
+
def stop
|
51
|
+
::EacDocker::Executables.docker.command('stop', id).execute!
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
attr_writer :id
|
57
|
+
|
58
|
+
def run_command_boolean_args
|
59
|
+
r = []
|
60
|
+
r << '--interactive' if interactive?
|
61
|
+
r << '--tty' if tty?
|
62
|
+
r << '--rm' if temporary?
|
63
|
+
r
|
64
|
+
end
|
65
|
+
|
66
|
+
def run_command_volumes_args
|
67
|
+
volumes.flat_map { |volume| ['--volume', volume] }
|
68
|
+
end
|
69
|
+
|
70
|
+
def run_command_envs_args
|
71
|
+
envs.flat_map { |name, value| ['--env', "#{name}=#{value}"] }
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
require 'eac_ruby_utils/envs'
|
5
|
+
|
6
|
+
module EacDocker
|
7
|
+
module Executables
|
8
|
+
class << self
|
9
|
+
def env
|
10
|
+
::EacRubyUtils::Envs.local
|
11
|
+
end
|
12
|
+
|
13
|
+
def docker
|
14
|
+
@docker ||= env.executable('docker', '--version')
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_docker/executables'
|
4
|
+
require 'eac_docker/images/base'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
|
7
|
+
module EacDocker
|
8
|
+
module Images
|
9
|
+
class Coded < ::EacDocker::Images::Base
|
10
|
+
enable_simple_cache
|
11
|
+
enable_immutable
|
12
|
+
immutable_accessor :tag
|
13
|
+
common_constructor :path do
|
14
|
+
self.path = path.to_pathname
|
15
|
+
end
|
16
|
+
|
17
|
+
def immutable_constructor_args
|
18
|
+
[path]
|
19
|
+
end
|
20
|
+
|
21
|
+
def provide
|
22
|
+
id
|
23
|
+
self
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def id_uncached
|
29
|
+
::EacDocker::Executables.docker.command(*build_args).execute!.strip
|
30
|
+
end
|
31
|
+
|
32
|
+
def build_args
|
33
|
+
args = %w[build --quiet]
|
34
|
+
args += ['--tag', tag] if tag.present?
|
35
|
+
args + [path.to_path]
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_docker/executables'
|
4
|
+
require 'eac_docker/images/base'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
|
7
|
+
module EacDocker
|
8
|
+
module Images
|
9
|
+
class Named < ::EacDocker::Images::Base
|
10
|
+
common_constructor :source_tag
|
11
|
+
|
12
|
+
def id
|
13
|
+
source_tag
|
14
|
+
end
|
15
|
+
|
16
|
+
def provide
|
17
|
+
provide_command.execute!
|
18
|
+
self
|
19
|
+
end
|
20
|
+
|
21
|
+
def provide_command
|
22
|
+
::EacDocker::Executables.docker.command(*docker_provide_args)
|
23
|
+
end
|
24
|
+
|
25
|
+
def docker_provide_args
|
26
|
+
['pull', source_tag]
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_docker/images/base'
|
4
|
+
require 'eac_docker/images/coded'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
require 'eac_ruby_utils/fs/temp'
|
7
|
+
|
8
|
+
module EacDocker
|
9
|
+
module Images
|
10
|
+
class Templatized < ::EacDocker::Images::Base
|
11
|
+
enable_immutable
|
12
|
+
immutable_accessor :tag
|
13
|
+
|
14
|
+
def provide
|
15
|
+
::EacRubyUtils::Fs::Temp.on_directory do |provide_dir|
|
16
|
+
template.apply(self, provide_dir)
|
17
|
+
coded_image(provide_dir).tag(tag).provide
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def coded_image(provide_dir)
|
22
|
+
::EacDocker::Images::Coded.new(provide_dir)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/rspec/conditional'
|
4
|
+
require 'eac_docker/executables'
|
5
|
+
|
6
|
+
module EacDocker
|
7
|
+
module Rspec
|
8
|
+
class << self
|
9
|
+
def configure
|
10
|
+
::EacRubyUtils::Rspec::Conditional.default.add(:docker) do
|
11
|
+
::EacDocker::Executables.docker.validate
|
12
|
+
end
|
13
|
+
RSpec.configure { |config| ::EacRubyUtils::Rspec::Conditional.default.configure(config) }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_docker/images/coded'
|
4
|
+
|
5
|
+
RSpec.describe(::EacDocker::Images::Coded, docker: true) do
|
6
|
+
let(:fixtures_dir) { ::Pathname.new('coded_spec_files').expand_path(__dir__) }
|
7
|
+
let(:instance) { described_class.new(fixtures_dir / 'image1') }
|
8
|
+
|
9
|
+
describe '#provide' do
|
10
|
+
it { expect { instance.provide }.not_to raise_error }
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
from ubuntu:bionic
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_docker/images/templatized'
|
4
|
+
|
5
|
+
RSpec.describe(::EacDocker::Images::Templatized, docker: true) do
|
6
|
+
let(:fixtures_dir) { ::Pathname.new('templatized_spec_files').expand_path(__dir__) }
|
7
|
+
let(:instance) { StubDockerImage.new }
|
8
|
+
|
9
|
+
before do
|
10
|
+
::EacRubyUtils::Templates::Searcher.default.included_paths << fixtures_dir
|
11
|
+
stub_const('StubDockerImage', Class.new(described_class))
|
12
|
+
end
|
13
|
+
|
14
|
+
describe '#provide' do
|
15
|
+
it { expect { instance.provide }.not_to raise_error }
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
from ubuntu:bionic
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
4
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
5
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
6
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
7
|
+
# files.
|
8
|
+
#
|
9
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
10
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
11
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
12
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
13
|
+
# a separate helper file that requires the additional dependencies and performs
|
14
|
+
# the additional setup, and require it from the spec files that actually need
|
15
|
+
# it.
|
16
|
+
#
|
17
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
18
|
+
RSpec.configure do |config|
|
19
|
+
# rspec-expectations config goes here. You can use an alternate
|
20
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
21
|
+
# assertions if you prefer.
|
22
|
+
config.expect_with :rspec do |expectations|
|
23
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
24
|
+
# and `failure_message` of custom matchers include text for helper methods
|
25
|
+
# defined using `chain`, e.g.:
|
26
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
27
|
+
# # => "be bigger than 2 and smaller than 4"
|
28
|
+
# ...rather than:
|
29
|
+
# # => "be bigger than 2"
|
30
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
31
|
+
end
|
32
|
+
|
33
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
34
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
35
|
+
config.mock_with :rspec do |mocks|
|
36
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
37
|
+
# a real object. This is generally recommended, and will default to
|
38
|
+
# `true` in RSpec 4.
|
39
|
+
mocks.verify_partial_doubles = true
|
40
|
+
end
|
41
|
+
|
42
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
43
|
+
# have no way to turn it off -- the option exists only for backwards
|
44
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
45
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
46
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
47
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
48
|
+
|
49
|
+
# The settings below are suggested to provide a good initial experience
|
50
|
+
# with RSpec, but feel free to customize to your heart's content.
|
51
|
+
# # This allows you to limit a spec run to individual examples or groups
|
52
|
+
# # you care about by tagging them with `:focus` metadata. When nothing
|
53
|
+
# # is tagged with `:focus`, all examples get run. RSpec also provides
|
54
|
+
# # aliases for `it`, `describe`, and `context` that include `:focus`
|
55
|
+
# # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
56
|
+
# config.filter_run_when_matching :focus
|
57
|
+
#
|
58
|
+
# # Allows RSpec to persist some state between runs in order to support
|
59
|
+
# # the `--only-failures` and `--next-failure` CLI options. We recommend
|
60
|
+
# # you configure your source control system to ignore this file.
|
61
|
+
# config.example_status_persistence_file_path = "spec/examples.txt"
|
62
|
+
#
|
63
|
+
# # Limits the available syntax to the non-monkey patched syntax that is
|
64
|
+
# # recommended. For more details, see:
|
65
|
+
# # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
66
|
+
# # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
67
|
+
# # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
68
|
+
# config.disable_monkey_patching!
|
69
|
+
#
|
70
|
+
# # This setting enables warnings. It's recommended, but in some cases may
|
71
|
+
# # be too noisy due to issues in dependencies.
|
72
|
+
# config.warnings = true
|
73
|
+
#
|
74
|
+
# # Many RSpec users commonly either run the entire suite or an individual
|
75
|
+
# # file, and it's useful to allow more verbose output when running an
|
76
|
+
# # individual spec file.
|
77
|
+
# if config.files_to_run.one?
|
78
|
+
# # Use the documentation formatter for detailed output,
|
79
|
+
# # unless a formatter has already been configured
|
80
|
+
# # (e.g. via a command-line flag).
|
81
|
+
# config.default_formatter = "doc"
|
82
|
+
# end
|
83
|
+
#
|
84
|
+
# # Print the 10 slowest examples and example groups at the
|
85
|
+
# # end of the spec run, to help surface which specs are running
|
86
|
+
# # particularly slow.
|
87
|
+
# config.profile_examples = 10
|
88
|
+
#
|
89
|
+
# # Run specs in random order to surface order dependencies. If you find an
|
90
|
+
# # order dependency and want to debug it, you can fix the order by providing
|
91
|
+
# # the seed, which is printed after each run.
|
92
|
+
# # --seed 1234
|
93
|
+
# config.order = :random
|
94
|
+
#
|
95
|
+
# # Seed global randomization in this process using the `--seed` CLI option.
|
96
|
+
# # Setting this allows you to use `--seed` to deterministically reproduce
|
97
|
+
# # test failures related to randomization by passing the same `--seed` value
|
98
|
+
# # as the one that triggered the failure.
|
99
|
+
# Kernel.srand config.seed
|
100
|
+
end
|
101
|
+
|
102
|
+
require 'eac_docker/rspec'
|
103
|
+
::EacDocker::Rspec.configure
|
@@ -2,12 +2,14 @@
|
|
2
2
|
|
3
3
|
require 'addressable'
|
4
4
|
require 'eac_ruby_utils/envs/base_env'
|
5
|
+
require 'eac_ruby_utils/patches/object/if_present'
|
5
6
|
require 'net/ssh'
|
6
7
|
require 'shellwords'
|
7
8
|
|
8
9
|
module EacRubyUtils
|
9
10
|
module Envs
|
10
11
|
class SshEnv < ::EacRubyUtils::Envs::BaseEnv
|
12
|
+
IDENTITITY_FILE_OPTION = 'IdentityFile'
|
11
13
|
USER_PATTERN = /[a-z_][a-z0-9_-]*/.freeze
|
12
14
|
HOSTNAME_PATTERN = /[^@]+/.freeze
|
13
15
|
USER_HOSTNAME_PATTERN = /\A(?:(#{USER_PATTERN})@)?(#{HOSTNAME_PATTERN})\z/.freeze
|
@@ -51,6 +53,7 @@ module EacRubyUtils
|
|
51
53
|
def ssh_command_line
|
52
54
|
r = %w[ssh]
|
53
55
|
r += ['-p', uri.port] if uri.port.present?
|
56
|
+
ssh_identity_file.if_present { |v| r += ['-i', v] }
|
54
57
|
r += ssh_command_line_options
|
55
58
|
r << user_hostname_uri
|
56
59
|
r.map { |a| Shellwords.escape(a) }.join(' ')
|
@@ -58,7 +61,9 @@ module EacRubyUtils
|
|
58
61
|
|
59
62
|
def ssh_command_line_options
|
60
63
|
r = []
|
61
|
-
uri.query_values&.each
|
64
|
+
uri.query_values&.each do |k, v|
|
65
|
+
r += ['-o', "#{k}=#{v}"] unless k == IDENTITITY_FILE_OPTION
|
66
|
+
end
|
62
67
|
r
|
63
68
|
end
|
64
69
|
|
@@ -67,6 +72,12 @@ module EacRubyUtils
|
|
67
72
|
r = "#{uri.user}@#{r}" if uri.user.present?
|
68
73
|
r
|
69
74
|
end
|
75
|
+
|
76
|
+
def ssh_identity_file
|
77
|
+
uri.query_values.if_present do |v|
|
78
|
+
v[IDENTITITY_FILE_OPTION]
|
79
|
+
end
|
80
|
+
end
|
70
81
|
end
|
71
82
|
end
|
72
83
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avm-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Esquilo Azul Company
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-07-
|
11
|
+
date: 2020-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aranha-parsers
|
@@ -106,6 +106,20 @@ dependencies:
|
|
106
106
|
- - "~>"
|
107
107
|
- !ruby/object:Gem::Version
|
108
108
|
version: '0.3'
|
109
|
+
- !ruby/object:Gem::Dependency
|
110
|
+
name: eac_docker
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - "~>"
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0.2'
|
116
|
+
type: :runtime
|
117
|
+
prerelease: false
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - "~>"
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0.2'
|
109
123
|
- !ruby/object:Gem::Dependency
|
110
124
|
name: eac_git
|
111
125
|
requirement: !ruby/object:Gem::Requirement
|
@@ -140,28 +154,28 @@ dependencies:
|
|
140
154
|
requirements:
|
141
155
|
- - "~>"
|
142
156
|
- !ruby/object:Gem::Version
|
143
|
-
version: '0.
|
157
|
+
version: '0.6'
|
144
158
|
type: :runtime
|
145
159
|
prerelease: false
|
146
160
|
version_requirements: !ruby/object:Gem::Requirement
|
147
161
|
requirements:
|
148
162
|
- - "~>"
|
149
163
|
- !ruby/object:Gem::Version
|
150
|
-
version: '0.
|
164
|
+
version: '0.6'
|
151
165
|
- !ruby/object:Gem::Dependency
|
152
166
|
name: eac_ruby_utils
|
153
167
|
requirement: !ruby/object:Gem::Requirement
|
154
168
|
requirements:
|
155
169
|
- - "~>"
|
156
170
|
- !ruby/object:Gem::Version
|
157
|
-
version: '0.
|
171
|
+
version: '0.41'
|
158
172
|
type: :runtime
|
159
173
|
prerelease: false
|
160
174
|
version_requirements: !ruby/object:Gem::Requirement
|
161
175
|
requirements:
|
162
176
|
- - "~>"
|
163
177
|
- !ruby/object:Gem::Version
|
164
|
-
version: '0.
|
178
|
+
version: '0.41'
|
165
179
|
- !ruby/object:Gem::Dependency
|
166
180
|
name: filesize
|
167
181
|
requirement: !ruby/object:Gem::Requirement
|
@@ -503,6 +517,26 @@ files:
|
|
503
517
|
- template/avm/stereotypes/eac_ubuntu_base0/docker_image/Dockerfile
|
504
518
|
- template/avm/stereotypes/eac_webapp_base0/apache_host/no_ssl.conf
|
505
519
|
- template/avm/stereotypes/eac_wordpress_base0/deploy/wp-config.php.template
|
520
|
+
- vendor/eac_docker/Gemfile
|
521
|
+
- vendor/eac_docker/eac_docker.gemspec
|
522
|
+
- vendor/eac_docker/lib/eac_docker.rb
|
523
|
+
- vendor/eac_docker/lib/eac_docker/container.rb
|
524
|
+
- vendor/eac_docker/lib/eac_docker/executables.rb
|
525
|
+
- vendor/eac_docker/lib/eac_docker/images.rb
|
526
|
+
- vendor/eac_docker/lib/eac_docker/images/base.rb
|
527
|
+
- vendor/eac_docker/lib/eac_docker/images/coded.rb
|
528
|
+
- vendor/eac_docker/lib/eac_docker/images/named.rb
|
529
|
+
- vendor/eac_docker/lib/eac_docker/images/templatized.rb
|
530
|
+
- vendor/eac_docker/lib/eac_docker/registry.rb
|
531
|
+
- vendor/eac_docker/lib/eac_docker/rspec.rb
|
532
|
+
- vendor/eac_docker/lib/eac_docker/version.rb
|
533
|
+
- vendor/eac_docker/spec/lib/eac_docker/executables_spec.rb
|
534
|
+
- vendor/eac_docker/spec/lib/eac_docker/images/coded_spec.rb
|
535
|
+
- vendor/eac_docker/spec/lib/eac_docker/images/coded_spec_files/image1/Dockerfile
|
536
|
+
- vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec.rb
|
537
|
+
- vendor/eac_docker/spec/lib/eac_docker/images/templatized_spec_files/stub_docker_image/Dockerfile
|
538
|
+
- vendor/eac_docker/spec/rubocop_spec.rb
|
539
|
+
- vendor/eac_docker/spec/spec_helper.rb
|
506
540
|
- vendor/eac_git/Gemfile
|
507
541
|
- vendor/eac_git/eac_git.gemspec
|
508
542
|
- vendor/eac_git/lib/eac_git.rb
|