aruba 2.2.0 → 2.3.0
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 +77 -47
- data/CONTRIBUTING.md +0 -1
- data/LICENSE +19 -17
- data/README.md +2 -3
- 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 +18 -45
- 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.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy, Matt Wynne and other Aruba Contributors
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -154,26 +154,6 @@ dependencies:
|
|
154
154
|
- - "~>"
|
155
155
|
- !ruby/object:Gem::Version
|
156
156
|
version: '5.10'
|
157
|
-
- !ruby/object:Gem::Dependency
|
158
|
-
name: pry
|
159
|
-
requirement: !ruby/object:Gem::Requirement
|
160
|
-
requirements:
|
161
|
-
- - ">="
|
162
|
-
- !ruby/object:Gem::Version
|
163
|
-
version: 0.13.0
|
164
|
-
- - "<"
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: 0.15.0
|
167
|
-
type: :development
|
168
|
-
prerelease: false
|
169
|
-
version_requirements: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: 0.13.0
|
174
|
-
- - "<"
|
175
|
-
- !ruby/object:Gem::Version
|
176
|
-
version: 0.15.0
|
177
157
|
- !ruby/object:Gem::Dependency
|
178
158
|
name: rake
|
179
159
|
requirement: !ruby/object:Gem::Requirement
|
@@ -228,62 +208,56 @@ dependencies:
|
|
228
208
|
requirements:
|
229
209
|
- - "~>"
|
230
210
|
- !ruby/object:Gem::Version
|
231
|
-
version: '1.
|
232
|
-
- - "!="
|
233
|
-
- !ruby/object:Gem::Version
|
234
|
-
version: 1.29.0
|
211
|
+
version: '1.62'
|
235
212
|
type: :development
|
236
213
|
prerelease: false
|
237
214
|
version_requirements: !ruby/object:Gem::Requirement
|
238
215
|
requirements:
|
239
216
|
- - "~>"
|
240
217
|
- !ruby/object:Gem::Version
|
241
|
-
version: '1.
|
242
|
-
- - "!="
|
243
|
-
- !ruby/object:Gem::Version
|
244
|
-
version: 1.29.0
|
218
|
+
version: '1.62'
|
245
219
|
- !ruby/object:Gem::Dependency
|
246
220
|
name: rubocop-packaging
|
247
221
|
requirement: !ruby/object:Gem::Requirement
|
248
222
|
requirements:
|
249
223
|
- - "~>"
|
250
224
|
- !ruby/object:Gem::Version
|
251
|
-
version: 0.5.
|
225
|
+
version: 0.5.2
|
252
226
|
type: :development
|
253
227
|
prerelease: false
|
254
228
|
version_requirements: !ruby/object:Gem::Requirement
|
255
229
|
requirements:
|
256
230
|
- - "~>"
|
257
231
|
- !ruby/object:Gem::Version
|
258
|
-
version: 0.5.
|
232
|
+
version: 0.5.2
|
259
233
|
- !ruby/object:Gem::Dependency
|
260
234
|
name: rubocop-performance
|
261
235
|
requirement: !ruby/object:Gem::Requirement
|
262
236
|
requirements:
|
263
237
|
- - "~>"
|
264
238
|
- !ruby/object:Gem::Version
|
265
|
-
version: '1.
|
239
|
+
version: '1.21'
|
266
240
|
type: :development
|
267
241
|
prerelease: false
|
268
242
|
version_requirements: !ruby/object:Gem::Requirement
|
269
243
|
requirements:
|
270
244
|
- - "~>"
|
271
245
|
- !ruby/object:Gem::Version
|
272
|
-
version: '1.
|
246
|
+
version: '1.21'
|
273
247
|
- !ruby/object:Gem::Dependency
|
274
248
|
name: rubocop-rspec
|
275
249
|
requirement: !ruby/object:Gem::Requirement
|
276
250
|
requirements:
|
277
251
|
- - "~>"
|
278
252
|
- !ruby/object:Gem::Version
|
279
|
-
version: '
|
253
|
+
version: '3.0'
|
280
254
|
type: :development
|
281
255
|
prerelease: false
|
282
256
|
version_requirements: !ruby/object:Gem::Requirement
|
283
257
|
requirements:
|
284
258
|
- - "~>"
|
285
259
|
- !ruby/object:Gem::Version
|
286
|
-
version: '
|
260
|
+
version: '3.0'
|
287
261
|
- !ruby/object:Gem::Dependency
|
288
262
|
name: simplecov
|
289
263
|
requirement: !ruby/object:Gem::Requirement
|
@@ -330,12 +304,14 @@ files:
|
|
330
304
|
- lib/aruba/api/environment.rb
|
331
305
|
- lib/aruba/api/filesystem.rb
|
332
306
|
- lib/aruba/api/text.rb
|
307
|
+
- lib/aruba/aruba_logger.rb
|
333
308
|
- lib/aruba/aruba_path.rb
|
334
309
|
- lib/aruba/basic_configuration.rb
|
335
310
|
- lib/aruba/basic_configuration/option.rb
|
336
311
|
- lib/aruba/cli.rb
|
337
312
|
- lib/aruba/colorizer.rb
|
338
313
|
- lib/aruba/command.rb
|
314
|
+
- lib/aruba/command_monitor.rb
|
339
315
|
- lib/aruba/config/jruby.rb
|
340
316
|
- lib/aruba/config_wrapper.rb
|
341
317
|
- lib/aruba/configuration.rb
|
@@ -354,7 +330,6 @@ files:
|
|
354
330
|
- lib/aruba/cucumber/testing_frameworks.rb
|
355
331
|
- lib/aruba/errors.rb
|
356
332
|
- lib/aruba/event_bus.rb
|
357
|
-
- lib/aruba/event_bus/name_resolver.rb
|
358
333
|
- lib/aruba/events.rb
|
359
334
|
- lib/aruba/file_size.rb
|
360
335
|
- lib/aruba/generators/script_file.rb
|
@@ -394,8 +369,6 @@ files:
|
|
394
369
|
- lib/aruba/platforms/announcer.rb
|
395
370
|
- lib/aruba/platforms/aruba_file_creator.rb
|
396
371
|
- lib/aruba/platforms/aruba_fixed_size_file_creator.rb
|
397
|
-
- lib/aruba/platforms/aruba_logger.rb
|
398
|
-
- lib/aruba/platforms/command_monitor.rb
|
399
372
|
- lib/aruba/platforms/determine_disk_usage.rb
|
400
373
|
- lib/aruba/platforms/determine_file_size.rb
|
401
374
|
- lib/aruba/platforms/filesystem_status.rb
|
@@ -426,7 +399,7 @@ metadata:
|
|
426
399
|
documentation_uri: https://www.rubydoc.info/gems/aruba
|
427
400
|
homepage_uri: https://github.com/cucumber/aruba
|
428
401
|
source_code_uri: https://github.com/cucumber/aruba
|
429
|
-
post_install_message:
|
402
|
+
post_install_message:
|
430
403
|
rdoc_options:
|
431
404
|
- "--charset"
|
432
405
|
- UTF-8
|
@@ -438,15 +411,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
438
411
|
requirements:
|
439
412
|
- - ">="
|
440
413
|
- !ruby/object:Gem::Version
|
441
|
-
version:
|
414
|
+
version: 3.0.0
|
442
415
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
443
416
|
requirements:
|
444
417
|
- - ">="
|
445
418
|
- !ruby/object:Gem::Version
|
446
419
|
version: '0'
|
447
420
|
requirements: []
|
448
|
-
rubygems_version: 3.
|
449
|
-
signing_key:
|
421
|
+
rubygems_version: 3.3.5
|
422
|
+
signing_key:
|
450
423
|
specification_version: 4
|
451
|
-
summary: aruba-2.
|
424
|
+
summary: aruba-2.3.0
|
452
425
|
test_files: []
|