aruba 2.2.0 → 2.3.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 +4 -4
- data/CHANGELOG.md +89 -47
- data/CONTRIBUTING.md +0 -1
- data/LICENSE +19 -17
- data/README.md +6 -5
- data/exe/aruba +3 -2
- data/lib/aruba/api/bundler.rb +4 -2
- data/lib/aruba/api/commands.rb +10 -8
- data/lib/aruba/api/core.rb +33 -31
- data/lib/aruba/api/environment.rb +4 -2
- data/lib/aruba/api/filesystem.rb +16 -14
- data/lib/aruba/api/text.rb +5 -3
- data/lib/aruba/api.rb +13 -11
- data/lib/aruba/{platforms/aruba_logger.rb → aruba_logger.rb} +4 -2
- data/lib/aruba/aruba_path.rb +4 -2
- data/lib/aruba/basic_configuration/option.rb +2 -0
- data/lib/aruba/basic_configuration.rb +15 -13
- data/lib/aruba/cli.rb +10 -8
- data/lib/aruba/colorizer.rb +2 -0
- data/lib/aruba/command.rb +10 -6
- data/lib/aruba/{platforms/command_monitor.rb → command_monitor.rb} +7 -5
- data/lib/aruba/config/jruby.rb +11 -9
- data/lib/aruba/config_wrapper.rb +4 -2
- data/lib/aruba/configuration.rb +17 -15
- data/lib/aruba/console/help.rb +7 -5
- data/lib/aruba/console.rb +12 -11
- data/lib/aruba/contracts/absolute_path.rb +3 -1
- data/lib/aruba/contracts/enum.rb +3 -1
- data/lib/aruba/contracts/is_power_of_two.rb +4 -2
- data/lib/aruba/contracts/relative_path.rb +3 -1
- data/lib/aruba/cucumber/command.rb +107 -98
- data/lib/aruba/cucumber/environment.rb +9 -7
- data/lib/aruba/cucumber/file.rb +4 -2
- data/lib/aruba/cucumber/hooks.rb +31 -29
- data/lib/aruba/cucumber/parameter_types.rb +4 -1
- data/lib/aruba/cucumber/testing_frameworks.rb +20 -18
- data/lib/aruba/cucumber.rb +10 -8
- data/lib/aruba/errors.rb +2 -6
- data/lib/aruba/event_bus.rb +8 -47
- data/lib/aruba/events.rb +15 -7
- data/lib/aruba/file_size.rb +3 -1
- data/lib/aruba/generators/script_file.rb +4 -2
- data/lib/aruba/hooks.rb +2 -0
- data/lib/aruba/in_config_wrapper.rb +3 -1
- data/lib/aruba/initializer.rb +25 -42
- data/lib/aruba/matchers/base/message_indenter.rb +3 -1
- data/lib/aruba/matchers/command/be_successfully_executed.rb +6 -4
- data/lib/aruba/matchers/command/have_exit_status.rb +2 -0
- data/lib/aruba/matchers/command/have_finished_in_time.rb +2 -0
- data/lib/aruba/matchers/command/have_output.rb +3 -1
- data/lib/aruba/matchers/command/have_output_on_stderr.rb +2 -0
- data/lib/aruba/matchers/command/have_output_on_stdout.rb +2 -0
- data/lib/aruba/matchers/command/have_output_size.rb +21 -5
- data/lib/aruba/matchers/command.rb +3 -1
- data/lib/aruba/matchers/directory/be_an_existing_directory.rb +3 -1
- data/lib/aruba/matchers/directory/have_sub_directory.rb +4 -2
- data/lib/aruba/matchers/directory.rb +3 -1
- data/lib/aruba/matchers/environment.rb +3 -1
- data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +4 -2
- data/lib/aruba/matchers/file/be_an_existing_executable.rb +3 -1
- data/lib/aruba/matchers/file/be_an_existing_file.rb +3 -1
- data/lib/aruba/matchers/file/have_file_content.rb +2 -0
- data/lib/aruba/matchers/file/have_file_size.rb +2 -0
- data/lib/aruba/matchers/file/have_same_file_content.rb +3 -1
- data/lib/aruba/matchers/file.rb +3 -1
- data/lib/aruba/matchers/path/a_path_matching_pattern.rb +2 -0
- data/lib/aruba/matchers/path/be_an_absolute_path.rb +2 -0
- data/lib/aruba/matchers/path/be_an_existing_path.rb +2 -0
- data/lib/aruba/matchers/path/have_permissions.rb +3 -1
- data/lib/aruba/matchers/path.rb +3 -1
- data/lib/aruba/matchers/string/include_output_string.rb +3 -1
- data/lib/aruba/matchers/string/match_output_string.rb +3 -1
- data/lib/aruba/matchers/string/output_string_eq.rb +3 -1
- data/lib/aruba/matchers/string.rb +3 -1
- data/lib/aruba/platform.rb +4 -2
- data/lib/aruba/platforms/announcer.rb +16 -14
- data/lib/aruba/platforms/aruba_file_creator.rb +2 -0
- data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +3 -1
- data/lib/aruba/platforms/determine_disk_usage.rb +3 -1
- data/lib/aruba/platforms/determine_file_size.rb +2 -0
- data/lib/aruba/platforms/filesystem_status.rb +3 -1
- data/lib/aruba/platforms/local_environment.rb +9 -1
- data/lib/aruba/platforms/simple_table.rb +4 -2
- data/lib/aruba/platforms/unix_command_string.rb +4 -2
- data/lib/aruba/platforms/unix_environment_variables.rb +4 -2
- data/lib/aruba/platforms/unix_platform.rb +28 -26
- data/lib/aruba/platforms/unix_which.rb +3 -1
- data/lib/aruba/platforms/windows_command_string.rb +2 -0
- data/lib/aruba/platforms/windows_environment_variables.rb +3 -1
- data/lib/aruba/platforms/windows_platform.rb +8 -6
- data/lib/aruba/platforms/windows_which.rb +7 -5
- data/lib/aruba/processes/basic_process.rb +4 -2
- data/lib/aruba/processes/debug_process.rb +8 -6
- data/lib/aruba/processes/in_process.rb +11 -8
- data/lib/aruba/processes/spawn_process.rb +18 -16
- data/lib/aruba/rspec.rb +8 -6
- data/lib/aruba/runtime.rb +9 -7
- data/lib/aruba/setup.rb +8 -6
- data/lib/aruba/version.rb +3 -1
- data/lib/aruba.rb +3 -1
- metadata +29 -42
- data/lib/aruba/event_bus/name_resolver.rb +0 -158
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Aruba
|
2
4
|
module Aruba
|
3
5
|
# Platforms
|
@@ -70,7 +72,7 @@ module Aruba
|
|
70
72
|
#
|
71
73
|
# @param [String] path
|
72
74
|
# ENV['PATH']
|
73
|
-
def call(program, path = ENV[
|
75
|
+
def call(program, path = ENV['PATH'])
|
74
76
|
raise ArgumentError, "ENV['PATH'] cannot be empty" if path.nil? || path.empty?
|
75
77
|
|
76
78
|
program = program.to_s
|
@@ -1,7 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
4
|
-
require
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'aruba/platforms/unix_platform'
|
4
|
+
require 'aruba/platforms/windows_command_string'
|
5
|
+
require 'aruba/platforms/windows_environment_variables'
|
6
|
+
require 'aruba/platforms/windows_which'
|
5
7
|
|
6
8
|
# Aruba
|
7
9
|
module Aruba
|
@@ -32,12 +34,12 @@ module Aruba
|
|
32
34
|
end
|
33
35
|
|
34
36
|
# @see UnixPlatform#which
|
35
|
-
def which(program, path = ENV[
|
37
|
+
def which(program, path = ENV['PATH'])
|
36
38
|
WindowsWhich.new.call(program, path)
|
37
39
|
end
|
38
40
|
|
39
41
|
def builtin_shell_commands
|
40
|
-
%w
|
42
|
+
%w[cd dir echo exit set type]
|
41
43
|
end
|
42
44
|
|
43
45
|
def term_signal_supported?
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Aruba
|
2
4
|
module Aruba
|
3
5
|
# Platforms
|
@@ -49,7 +51,7 @@ module Aruba
|
|
49
51
|
file = File.join(dir, program)
|
50
52
|
# Dir[] doesn't handle backslashes properly, so convert them. Also, if
|
51
53
|
# the program name doesn't have an extension, try them all.
|
52
|
-
file = file.tr(
|
54
|
+
file = file.tr('\\', '/')
|
53
55
|
|
54
56
|
found = Dir[file].first
|
55
57
|
|
@@ -84,7 +86,7 @@ module Aruba
|
|
84
86
|
#
|
85
87
|
# @param [String] path
|
86
88
|
# ENV['PATH']
|
87
|
-
def call(program, path = ENV[
|
89
|
+
def call(program, path = ENV['PATH'])
|
88
90
|
raise ArgumentError, "ENV['PATH'] cannot be empty" if path.nil? || path.empty?
|
89
91
|
|
90
92
|
program = program.to_s
|
@@ -96,10 +98,10 @@ module Aruba
|
|
96
98
|
private
|
97
99
|
|
98
100
|
def windows_executable_extentions
|
99
|
-
if ENV[
|
100
|
-
format(
|
101
|
+
if ENV['PATHEXT']
|
102
|
+
format('.{%s}', ENV['PATHEXT'].tr(';', ',').tr('.', '')).downcase
|
101
103
|
else
|
102
|
-
|
104
|
+
'.{exe,com,bat}'
|
103
105
|
end
|
104
106
|
end
|
105
107
|
end
|
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'aruba/processes/spawn_process'
|
2
4
|
|
3
5
|
# Aruba
|
4
6
|
module Aruba
|
@@ -24,7 +26,7 @@ module Aruba
|
|
24
26
|
def start
|
25
27
|
@started = true
|
26
28
|
Dir.chdir @working_directory do
|
27
|
-
Aruba.platform.
|
29
|
+
Aruba.platform.with_replaced_environment(environment) do
|
28
30
|
@exit_status = system(command, *arguments) ? 0 : 1
|
29
31
|
end
|
30
32
|
end
|
@@ -41,8 +43,8 @@ module Aruba
|
|
41
43
|
# @return [String]
|
42
44
|
# A predefined string to make users aware they are using the DebugProcess
|
43
45
|
def stdout(*)
|
44
|
-
|
45
|
-
|
46
|
+
'This is the debug launcher on STDOUT. ' \
|
47
|
+
'If this output is unexpected, please check your setup.'
|
46
48
|
end
|
47
49
|
|
48
50
|
# Return stderr
|
@@ -50,8 +52,8 @@ module Aruba
|
|
50
52
|
# @return [String]
|
51
53
|
# A predefined string to make users aware they are using the DebugProcess
|
52
54
|
def stderr(*)
|
53
|
-
|
54
|
-
|
55
|
+
'This is the debug launcher on STDERR. ' \
|
56
|
+
'If this output is unexpected, please check your setup.'
|
55
57
|
end
|
56
58
|
|
57
59
|
# Write to nothing
|
@@ -1,7 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
4
|
-
require
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'shellwords'
|
4
|
+
require 'stringio'
|
5
|
+
require 'aruba/processes/basic_process'
|
6
|
+
require 'aruba/platform'
|
5
7
|
|
6
8
|
# Aruba
|
7
9
|
module Aruba
|
@@ -61,14 +63,15 @@ module Aruba
|
|
61
63
|
|
62
64
|
# Start command
|
63
65
|
def start
|
64
|
-
raise
|
66
|
+
raise 'You need to call aruba.config.main_class = YourMainClass' unless main_class
|
65
67
|
|
66
68
|
@started = true
|
67
69
|
|
68
70
|
Dir.chdir @working_directory do
|
69
71
|
before_run
|
70
72
|
|
71
|
-
|
73
|
+
new_env = environment.merge('PWD' => @working_directory)
|
74
|
+
Aruba.platform.with_replaced_environment new_env do
|
72
75
|
main_class.new(@argv, @stdin, @stdout, @stderr, @kernel).execute!
|
73
76
|
end
|
74
77
|
|
@@ -109,8 +112,8 @@ module Aruba
|
|
109
112
|
|
110
113
|
# Close io
|
111
114
|
def close_io(name)
|
112
|
-
unless [
|
113
|
-
raise ArgumentError,
|
115
|
+
unless %i[stdin stdout stderr].include? name
|
116
|
+
raise ArgumentError, 'Only stdin stdout and stderr are allowed to close'
|
114
117
|
end
|
115
118
|
|
116
119
|
get_instance_variable(name.to_sym).close
|
@@ -1,9 +1,11 @@
|
|
1
|
-
|
2
|
-
require "shellwords"
|
1
|
+
# frozen_string_literal: true
|
3
2
|
|
4
|
-
require
|
5
|
-
require
|
6
|
-
|
3
|
+
require 'tempfile'
|
4
|
+
require 'shellwords'
|
5
|
+
|
6
|
+
require 'aruba/errors'
|
7
|
+
require 'aruba/processes/basic_process'
|
8
|
+
require 'aruba/platform'
|
7
9
|
|
8
10
|
# Aruba
|
9
11
|
module Aruba
|
@@ -39,11 +41,11 @@ module Aruba
|
|
39
41
|
return if @exit_status
|
40
42
|
|
41
43
|
if Aruba.platform.term_signal_supported?
|
42
|
-
send_signal
|
44
|
+
send_signal 'TERM'
|
43
45
|
return if poll_for_exit(3)
|
44
46
|
end
|
45
47
|
|
46
|
-
send_signal
|
48
|
+
send_signal 'KILL'
|
47
49
|
wait
|
48
50
|
end
|
49
51
|
|
@@ -144,9 +146,9 @@ module Aruba
|
|
144
146
|
def start
|
145
147
|
if started?
|
146
148
|
error_message =
|
147
|
-
"Command \"#{commandline}\" has already been started." \
|
148
|
-
|
149
|
-
|
149
|
+
"Command \"#{commandline}\" has already been started. " \
|
150
|
+
'Please `#stop` the command first and `#start` it again. ' \
|
151
|
+
'Alternatively use `#restart`.'
|
150
152
|
raise CommandAlreadyStartedError, error_message
|
151
153
|
end
|
152
154
|
|
@@ -154,14 +156,14 @@ module Aruba
|
|
154
156
|
|
155
157
|
@process = ProcessRunner.new(command_string.to_a)
|
156
158
|
|
157
|
-
@stdout_file = Tempfile.new(
|
158
|
-
@stderr_file = Tempfile.new(
|
159
|
+
@stdout_file = Tempfile.new('aruba-stdout-')
|
160
|
+
@stderr_file = Tempfile.new('aruba-stderr-')
|
159
161
|
|
160
162
|
@stdout_file.sync = true
|
161
163
|
@stderr_file.sync = true
|
162
164
|
|
163
|
-
@stdout_file.set_encoding(
|
164
|
-
@stderr_file.set_encoding(
|
165
|
+
@stdout_file.set_encoding('ASCII-8BIT')
|
166
|
+
@stderr_file.set_encoding('ASCII-8BIT')
|
165
167
|
|
166
168
|
@exit_status = nil
|
167
169
|
|
@@ -346,7 +348,7 @@ module Aruba
|
|
346
348
|
if Aruba.platform.builtin_shell_commands.include?(command)
|
347
349
|
command
|
348
350
|
else
|
349
|
-
Aruba.platform.which(command, environment[
|
351
|
+
Aruba.platform.which(command, environment['PATH'])
|
350
352
|
end
|
351
353
|
end
|
352
354
|
|
@@ -361,7 +363,7 @@ module Aruba
|
|
361
363
|
data = file.read
|
362
364
|
file.close
|
363
365
|
|
364
|
-
data.force_encoding(
|
366
|
+
data.force_encoding('UTF-8')
|
365
367
|
end
|
366
368
|
end
|
367
369
|
end
|
data/lib/aruba/rspec.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
|
5
|
-
require
|
3
|
+
require 'rspec/core'
|
4
|
+
|
5
|
+
require 'aruba'
|
6
|
+
require 'aruba/api'
|
7
|
+
require 'aruba/version'
|
6
8
|
|
7
9
|
RSpec.configure do |config|
|
8
10
|
config.include Aruba::Api, type: :aruba
|
@@ -14,12 +16,12 @@ RSpec.configure do |config|
|
|
14
16
|
|
15
17
|
# Modify PATH to include project/bin
|
16
18
|
prepend_environment_variable(
|
17
|
-
|
19
|
+
'PATH',
|
18
20
|
aruba.config.command_search_paths.join(File::PATH_SEPARATOR) + File::PATH_SEPARATOR
|
19
21
|
)
|
20
22
|
|
21
23
|
# Use configured home directory as HOME
|
22
|
-
set_environment_variable
|
24
|
+
set_environment_variable 'HOME', aruba.config.home_directory
|
23
25
|
end
|
24
26
|
|
25
27
|
example.run
|
data/lib/aruba/runtime.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
require
|
4
|
-
require
|
5
|
-
require
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'aruba/configuration'
|
4
|
+
require 'aruba/aruba_path'
|
5
|
+
require 'aruba/config_wrapper'
|
6
|
+
require 'aruba/events'
|
7
|
+
require 'aruba/event_bus'
|
6
8
|
|
7
9
|
module Aruba
|
8
10
|
# Runtime of aruba
|
@@ -40,7 +42,7 @@ module Aruba
|
|
40
42
|
attr_accessor :config, :environment, :logger, :command_monitor, :announcer, :event_bus
|
41
43
|
|
42
44
|
def initialize(opts = {})
|
43
|
-
@event_bus = EventBus.new(
|
45
|
+
@event_bus = EventBus.new(Aruba::Events.registry)
|
44
46
|
@announcer = opts.fetch(:announcer, Aruba.platform.announcer.new)
|
45
47
|
@config = opts.fetch(:config,
|
46
48
|
ConfigWrapper.new(Aruba.config.make_copy, @event_bus))
|
@@ -84,7 +86,7 @@ module Aruba
|
|
84
86
|
directory = candidates.find { |d| Aruba.platform.directory? d }
|
85
87
|
|
86
88
|
unless directory
|
87
|
-
canditates_display = candidates.map { |d| format('"%s"', d) }.join(
|
89
|
+
canditates_display = candidates.map { |d| format('"%s"', d) }.join(', ')
|
88
90
|
raise "No existing fixtures directory found in #{canditates_display}."
|
89
91
|
end
|
90
92
|
|
data/lib/aruba/setup.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module Aruba
|
2
4
|
class Setup
|
3
5
|
private
|
@@ -39,10 +41,10 @@ module Aruba
|
|
39
41
|
:command_started,
|
40
42
|
proc do |event|
|
41
43
|
runtime.announcer.announce(:command) { event.entity.commandline }
|
42
|
-
runtime.announcer.announce(:timeout,
|
43
|
-
runtime.announcer.announce(:timeout,
|
44
|
+
runtime.announcer.announce(:timeout, 'exit') { event.entity.exit_timeout }
|
45
|
+
runtime.announcer.announce(:timeout, 'io wait') { event.entity.io_wait_timeout }
|
44
46
|
runtime.announcer
|
45
|
-
.announce(:wait_time,
|
47
|
+
.announce(:wait_time, 'startup wait time') { event.entity.startup_wait_time }
|
46
48
|
runtime.announcer.announce(:full_environment) { event.entity.environment }
|
47
49
|
end
|
48
50
|
)
|
@@ -74,9 +76,9 @@ module Aruba
|
|
74
76
|
)
|
75
77
|
|
76
78
|
runtime.event_bus.register(
|
77
|
-
[
|
78
|
-
|
79
|
-
|
79
|
+
%i[changed_environment_variable
|
80
|
+
added_environment_variable
|
81
|
+
deleted_environment_variable],
|
80
82
|
proc do |event|
|
81
83
|
runtime.announcer.announce :changed_environment,
|
82
84
|
event.entity[:changed][:name],
|
data/lib/aruba/version.rb
CHANGED
data/lib/aruba.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aruba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy, Matt Wynne and other Aruba Contributors
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -59,7 +59,7 @@ dependencies:
|
|
59
59
|
version: '8.0'
|
60
60
|
- - "<"
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '
|
62
|
+
version: '11.0'
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -69,7 +69,7 @@ dependencies:
|
|
69
69
|
version: '8.0'
|
70
70
|
- - "<"
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: '
|
72
|
+
version: '11.0'
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: rspec-expectations
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
@@ -113,21 +113,21 @@ dependencies:
|
|
113
113
|
- !ruby/object:Gem::Version
|
114
114
|
version: '2.4'
|
115
115
|
- !ruby/object:Gem::Dependency
|
116
|
-
name:
|
116
|
+
name: diff-lcs
|
117
117
|
requirement: !ruby/object:Gem::Requirement
|
118
118
|
requirements:
|
119
119
|
- - "~>"
|
120
120
|
- !ruby/object:Gem::Version
|
121
|
-
version: '
|
121
|
+
version: '1.6'
|
122
122
|
type: :development
|
123
123
|
prerelease: false
|
124
124
|
version_requirements: !ruby/object:Gem::Requirement
|
125
125
|
requirements:
|
126
126
|
- - "~>"
|
127
127
|
- !ruby/object:Gem::Version
|
128
|
-
version: '
|
128
|
+
version: '1.6'
|
129
129
|
- !ruby/object:Gem::Dependency
|
130
|
-
name:
|
130
|
+
name: json
|
131
131
|
requirement: !ruby/object:Gem::Requirement
|
132
132
|
requirements:
|
133
133
|
- - "~>"
|
@@ -141,39 +141,33 @@ dependencies:
|
|
141
141
|
- !ruby/object:Gem::Version
|
142
142
|
version: '2.1'
|
143
143
|
- !ruby/object:Gem::Dependency
|
144
|
-
name:
|
144
|
+
name: kramdown
|
145
145
|
requirement: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
147
|
- - "~>"
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version: '
|
149
|
+
version: '2.1'
|
150
150
|
type: :development
|
151
151
|
prerelease: false
|
152
152
|
version_requirements: !ruby/object:Gem::Requirement
|
153
153
|
requirements:
|
154
154
|
- - "~>"
|
155
155
|
- !ruby/object:Gem::Version
|
156
|
-
version: '
|
156
|
+
version: '2.1'
|
157
157
|
- !ruby/object:Gem::Dependency
|
158
|
-
name:
|
158
|
+
name: minitest
|
159
159
|
requirement: !ruby/object:Gem::Requirement
|
160
160
|
requirements:
|
161
|
-
- - "
|
162
|
-
- !ruby/object:Gem::Version
|
163
|
-
version: 0.13.0
|
164
|
-
- - "<"
|
161
|
+
- - "~>"
|
165
162
|
- !ruby/object:Gem::Version
|
166
|
-
version:
|
163
|
+
version: '5.10'
|
167
164
|
type: :development
|
168
165
|
prerelease: false
|
169
166
|
version_requirements: !ruby/object:Gem::Requirement
|
170
167
|
requirements:
|
171
|
-
- - "
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: 0.13.0
|
174
|
-
- - "<"
|
168
|
+
- - "~>"
|
175
169
|
- !ruby/object:Gem::Version
|
176
|
-
version:
|
170
|
+
version: '5.10'
|
177
171
|
- !ruby/object:Gem::Dependency
|
178
172
|
name: rake
|
179
173
|
requirement: !ruby/object:Gem::Requirement
|
@@ -228,62 +222,56 @@ dependencies:
|
|
228
222
|
requirements:
|
229
223
|
- - "~>"
|
230
224
|
- !ruby/object:Gem::Version
|
231
|
-
version: '1.
|
232
|
-
- - "!="
|
233
|
-
- !ruby/object:Gem::Version
|
234
|
-
version: 1.29.0
|
225
|
+
version: '1.76'
|
235
226
|
type: :development
|
236
227
|
prerelease: false
|
237
228
|
version_requirements: !ruby/object:Gem::Requirement
|
238
229
|
requirements:
|
239
230
|
- - "~>"
|
240
231
|
- !ruby/object:Gem::Version
|
241
|
-
version: '1.
|
242
|
-
- - "!="
|
243
|
-
- !ruby/object:Gem::Version
|
244
|
-
version: 1.29.0
|
232
|
+
version: '1.76'
|
245
233
|
- !ruby/object:Gem::Dependency
|
246
234
|
name: rubocop-packaging
|
247
235
|
requirement: !ruby/object:Gem::Requirement
|
248
236
|
requirements:
|
249
237
|
- - "~>"
|
250
238
|
- !ruby/object:Gem::Version
|
251
|
-
version: 0.
|
239
|
+
version: 0.6.0
|
252
240
|
type: :development
|
253
241
|
prerelease: false
|
254
242
|
version_requirements: !ruby/object:Gem::Requirement
|
255
243
|
requirements:
|
256
244
|
- - "~>"
|
257
245
|
- !ruby/object:Gem::Version
|
258
|
-
version: 0.
|
246
|
+
version: 0.6.0
|
259
247
|
- !ruby/object:Gem::Dependency
|
260
248
|
name: rubocop-performance
|
261
249
|
requirement: !ruby/object:Gem::Requirement
|
262
250
|
requirements:
|
263
251
|
- - "~>"
|
264
252
|
- !ruby/object:Gem::Version
|
265
|
-
version: '1.
|
253
|
+
version: '1.25'
|
266
254
|
type: :development
|
267
255
|
prerelease: false
|
268
256
|
version_requirements: !ruby/object:Gem::Requirement
|
269
257
|
requirements:
|
270
258
|
- - "~>"
|
271
259
|
- !ruby/object:Gem::Version
|
272
|
-
version: '1.
|
260
|
+
version: '1.25'
|
273
261
|
- !ruby/object:Gem::Dependency
|
274
262
|
name: rubocop-rspec
|
275
263
|
requirement: !ruby/object:Gem::Requirement
|
276
264
|
requirements:
|
277
265
|
- - "~>"
|
278
266
|
- !ruby/object:Gem::Version
|
279
|
-
version: '
|
267
|
+
version: '3.6'
|
280
268
|
type: :development
|
281
269
|
prerelease: false
|
282
270
|
version_requirements: !ruby/object:Gem::Requirement
|
283
271
|
requirements:
|
284
272
|
- - "~>"
|
285
273
|
- !ruby/object:Gem::Version
|
286
|
-
version: '
|
274
|
+
version: '3.6'
|
287
275
|
- !ruby/object:Gem::Dependency
|
288
276
|
name: simplecov
|
289
277
|
requirement: !ruby/object:Gem::Requirement
|
@@ -330,12 +318,14 @@ files:
|
|
330
318
|
- lib/aruba/api/environment.rb
|
331
319
|
- lib/aruba/api/filesystem.rb
|
332
320
|
- lib/aruba/api/text.rb
|
321
|
+
- lib/aruba/aruba_logger.rb
|
333
322
|
- lib/aruba/aruba_path.rb
|
334
323
|
- lib/aruba/basic_configuration.rb
|
335
324
|
- lib/aruba/basic_configuration/option.rb
|
336
325
|
- lib/aruba/cli.rb
|
337
326
|
- lib/aruba/colorizer.rb
|
338
327
|
- lib/aruba/command.rb
|
328
|
+
- lib/aruba/command_monitor.rb
|
339
329
|
- lib/aruba/config/jruby.rb
|
340
330
|
- lib/aruba/config_wrapper.rb
|
341
331
|
- lib/aruba/configuration.rb
|
@@ -354,7 +344,6 @@ files:
|
|
354
344
|
- lib/aruba/cucumber/testing_frameworks.rb
|
355
345
|
- lib/aruba/errors.rb
|
356
346
|
- lib/aruba/event_bus.rb
|
357
|
-
- lib/aruba/event_bus/name_resolver.rb
|
358
347
|
- lib/aruba/events.rb
|
359
348
|
- lib/aruba/file_size.rb
|
360
349
|
- lib/aruba/generators/script_file.rb
|
@@ -394,8 +383,6 @@ files:
|
|
394
383
|
- lib/aruba/platforms/announcer.rb
|
395
384
|
- lib/aruba/platforms/aruba_file_creator.rb
|
396
385
|
- lib/aruba/platforms/aruba_fixed_size_file_creator.rb
|
397
|
-
- lib/aruba/platforms/aruba_logger.rb
|
398
|
-
- lib/aruba/platforms/command_monitor.rb
|
399
386
|
- lib/aruba/platforms/determine_disk_usage.rb
|
400
387
|
- lib/aruba/platforms/determine_file_size.rb
|
401
388
|
- lib/aruba/platforms/filesystem_status.rb
|
@@ -438,15 +425,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
438
425
|
requirements:
|
439
426
|
- - ">="
|
440
427
|
- !ruby/object:Gem::Version
|
441
|
-
version:
|
428
|
+
version: 3.0.0
|
442
429
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
443
430
|
requirements:
|
444
431
|
- - ">="
|
445
432
|
- !ruby/object:Gem::Version
|
446
433
|
version: '0'
|
447
434
|
requirements: []
|
448
|
-
rubygems_version: 3.4.
|
435
|
+
rubygems_version: 3.4.20
|
449
436
|
signing_key:
|
450
437
|
specification_version: 4
|
451
|
-
summary: aruba-2.
|
438
|
+
summary: aruba-2.3.1
|
452
439
|
test_files: []
|