aruba 1.0.4 → 1.1.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.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -1
  3. data/CONTRIBUTING.md +11 -23
  4. data/README.md +1 -2
  5. data/exe/aruba +2 -2
  6. data/lib/aruba.rb +1 -1
  7. data/lib/aruba/api.rb +11 -11
  8. data/lib/aruba/api/bundler.rb +1 -1
  9. data/lib/aruba/api/commands.rb +7 -7
  10. data/lib/aruba/api/core.rb +20 -20
  11. data/lib/aruba/api/environment.rb +2 -2
  12. data/lib/aruba/api/filesystem.rb +41 -14
  13. data/lib/aruba/api/text.rb +4 -4
  14. data/lib/aruba/aruba_path.rb +2 -2
  15. data/lib/aruba/basic_configuration.rb +11 -11
  16. data/lib/aruba/cli.rb +7 -7
  17. data/lib/aruba/command.rb +4 -4
  18. data/lib/aruba/config/jruby.rb +9 -9
  19. data/lib/aruba/config_wrapper.rb +2 -2
  20. data/lib/aruba/configuration.rb +14 -14
  21. data/lib/aruba/console.rb +11 -11
  22. data/lib/aruba/console/help.rb +5 -5
  23. data/lib/aruba/contracts/absolute_path.rb +1 -1
  24. data/lib/aruba/contracts/enum.rb +1 -1
  25. data/lib/aruba/contracts/is_power_of_two.rb +1 -1
  26. data/lib/aruba/contracts/relative_path.rb +1 -1
  27. data/lib/aruba/cucumber.rb +7 -7
  28. data/lib/aruba/cucumber/command.rb +31 -31
  29. data/lib/aruba/cucumber/environment.rb +7 -7
  30. data/lib/aruba/cucumber/file.rb +7 -3
  31. data/lib/aruba/cucumber/hooks.rb +29 -29
  32. data/lib/aruba/cucumber/testing_frameworks.rb +18 -18
  33. data/lib/aruba/event_bus.rb +4 -4
  34. data/lib/aruba/event_bus/name_resolver.rb +4 -4
  35. data/lib/aruba/file_size.rb +1 -1
  36. data/lib/aruba/generators/script_file.rb +2 -2
  37. data/lib/aruba/in_config_wrapper.rb +1 -1
  38. data/lib/aruba/initializer.rb +10 -10
  39. data/lib/aruba/matchers/base/base_matcher.rb +1 -1
  40. data/lib/aruba/matchers/base/message_indenter.rb +1 -1
  41. data/lib/aruba/matchers/base/object_formatter.rb +2 -2
  42. data/lib/aruba/matchers/collection.rb +1 -1
  43. data/lib/aruba/matchers/collection/all.rb +1 -1
  44. data/lib/aruba/matchers/collection/include_an_object.rb +2 -2
  45. data/lib/aruba/matchers/command.rb +1 -1
  46. data/lib/aruba/matchers/command/be_successfully_executed.rb +4 -4
  47. data/lib/aruba/matchers/command/have_finished_in_time.rb +1 -1
  48. data/lib/aruba/matchers/command/have_output.rb +1 -1
  49. data/lib/aruba/matchers/directory.rb +1 -1
  50. data/lib/aruba/matchers/directory/be_an_existing_directory.rb +2 -2
  51. data/lib/aruba/matchers/directory/have_sub_directory.rb +3 -3
  52. data/lib/aruba/matchers/environment.rb +1 -1
  53. data/lib/aruba/matchers/file.rb +1 -1
  54. data/lib/aruba/matchers/file/be_a_command_found_in_path.rb +1 -1
  55. data/lib/aruba/matchers/file/be_an_existing_executable.rb +2 -2
  56. data/lib/aruba/matchers/file/be_an_existing_file.rb +2 -2
  57. data/lib/aruba/matchers/file/have_file_content.rb +1 -1
  58. data/lib/aruba/matchers/file/have_file_size.rb +1 -1
  59. data/lib/aruba/matchers/file/have_same_file_content.rb +2 -2
  60. data/lib/aruba/matchers/path.rb +1 -1
  61. data/lib/aruba/matchers/path/a_path_matching_pattern.rb +1 -1
  62. data/lib/aruba/matchers/path/be_an_absolute_path.rb +1 -1
  63. data/lib/aruba/matchers/path/be_an_existing_path.rb +1 -1
  64. data/lib/aruba/matchers/path/have_permissions.rb +2 -2
  65. data/lib/aruba/matchers/string.rb +1 -1
  66. data/lib/aruba/matchers/string/include_output_string.rb +1 -1
  67. data/lib/aruba/matchers/string/match_output_string.rb +1 -1
  68. data/lib/aruba/matchers/string/output_string_eq.rb +1 -1
  69. data/lib/aruba/platform.rb +2 -2
  70. data/lib/aruba/platforms/announcer.rb +14 -14
  71. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +1 -1
  72. data/lib/aruba/platforms/aruba_logger.rb +1 -1
  73. data/lib/aruba/platforms/command_monitor.rb +5 -5
  74. data/lib/aruba/platforms/determine_disk_usage.rb +1 -1
  75. data/lib/aruba/platforms/filesystem_status.rb +1 -1
  76. data/lib/aruba/platforms/simple_table.rb +1 -1
  77. data/lib/aruba/platforms/unix_command_string.rb +2 -2
  78. data/lib/aruba/platforms/unix_platform.rb +22 -22
  79. data/lib/aruba/platforms/unix_which.rb +1 -1
  80. data/lib/aruba/platforms/windows_command_string.rb +2 -2
  81. data/lib/aruba/platforms/windows_environment_variables.rb +1 -1
  82. data/lib/aruba/platforms/windows_platform.rb +6 -6
  83. data/lib/aruba/platforms/windows_which.rb +5 -5
  84. data/lib/aruba/processes/basic_process.rb +2 -2
  85. data/lib/aruba/processes/debug_process.rb +5 -5
  86. data/lib/aruba/processes/in_process.rb +7 -7
  87. data/lib/aruba/processes/spawn_process.rb +17 -22
  88. data/lib/aruba/rspec.rb +6 -6
  89. data/lib/aruba/runtime.rb +6 -6
  90. data/lib/aruba/setup.rb +3 -3
  91. data/lib/aruba/version.rb +1 -1
  92. metadata +21 -22
  93. data/lib/aruba/tasks/docker_helpers.rb +0 -156
@@ -1,20 +1,20 @@
1
- require 'rbconfig'
2
- require 'pathname'
3
-
4
- require 'aruba/aruba_path'
5
-
6
- require 'aruba/platforms/simple_table'
7
- require 'aruba/platforms/unix_command_string'
8
- require 'aruba/platforms/unix_which'
9
- require 'aruba/platforms/determine_file_size'
10
- require 'aruba/platforms/determine_disk_usage'
11
- require 'aruba/platforms/aruba_file_creator'
12
- require 'aruba/platforms/aruba_fixed_size_file_creator'
13
- require 'aruba/platforms/local_environment'
14
- require 'aruba/platforms/aruba_logger'
15
- require 'aruba/platforms/announcer'
16
- require 'aruba/platforms/command_monitor'
17
- require 'aruba/platforms/filesystem_status'
1
+ require "rbconfig"
2
+ require "pathname"
3
+
4
+ require "aruba/aruba_path"
5
+
6
+ require "aruba/platforms/simple_table"
7
+ require "aruba/platforms/unix_command_string"
8
+ require "aruba/platforms/unix_which"
9
+ require "aruba/platforms/determine_file_size"
10
+ require "aruba/platforms/determine_disk_usage"
11
+ require "aruba/platforms/aruba_file_creator"
12
+ require "aruba/platforms/aruba_fixed_size_file_creator"
13
+ require "aruba/platforms/local_environment"
14
+ require "aruba/platforms/aruba_logger"
15
+ require "aruba/platforms/announcer"
16
+ require "aruba/platforms/command_monitor"
17
+ require "aruba/platforms/filesystem_status"
18
18
 
19
19
  # Aruba
20
20
  module Aruba
@@ -79,7 +79,7 @@ module Aruba
79
79
  end
80
80
 
81
81
  def default_shell
82
- 'bash'
82
+ "bash"
83
83
  end
84
84
 
85
85
  def detect_ruby(cmd)
@@ -91,11 +91,11 @@ module Aruba
91
91
  end
92
92
 
93
93
  def deprecated(msg)
94
- warn(format('%s. Called by %s', msg, caller[1]))
94
+ warn(format("%s. Called by %s", msg, caller[1]))
95
95
  end
96
96
 
97
97
  def current_ruby
98
- ::File.join(RbConfig::CONFIG['bindir'], RbConfig::CONFIG['ruby_install_name'])
98
+ ::File.join(RbConfig::CONFIG["bindir"], RbConfig::CONFIG["ruby_install_name"])
99
99
  end
100
100
 
101
101
  def require_matching_files(pattern, base)
@@ -125,7 +125,7 @@ module Aruba
125
125
  def chdir(dir_name, &block)
126
126
  dir_name = ::File.expand_path(dir_name.to_s)
127
127
 
128
- with_environment 'OLDPWD' => getwd, 'PWD' => dir_name do
128
+ with_environment "OLDPWD" => getwd, "PWD" => dir_name do
129
129
  ::Dir.chdir(dir_name, &block)
130
130
  end
131
131
  end
@@ -233,7 +233,7 @@ module Aruba
233
233
  # @param [String] path
234
234
  # The PATH, a string concatenated with ":", e.g. /usr/bin/:/bin on a
235
235
  # UNIX-system
236
- def which(program, path = ENV['PATH'])
236
+ def which(program, path = ENV["PATH"])
237
237
  UnixWhich.new.call(program, path)
238
238
  end
239
239
 
@@ -70,7 +70,7 @@ module Aruba
70
70
  #
71
71
  # @param [String] path
72
72
  # ENV['PATH']
73
- def call(program, path = ENV['PATH'])
73
+ def call(program, path = ENV["PATH"])
74
74
  raise ArgumentError, "ENV['PATH'] cannot be empty" if path.nil? || path.empty?
75
75
 
76
76
  program = program.to_s
@@ -15,7 +15,7 @@ module Aruba
15
15
 
16
16
  # Convert to array
17
17
  def to_a
18
- [cmd_path, '/c', [escaped_command, *escaped_arguments].join(' ')]
18
+ [cmd_path, "/c", [escaped_command, *escaped_arguments].join(" ")]
19
19
  end
20
20
 
21
21
  private
@@ -30,7 +30,7 @@ module Aruba
30
30
  end
31
31
 
32
32
  def cmd_path
33
- Aruba.platform.which('cmd.exe')
33
+ Aruba.platform.which("cmd.exe")
34
34
  end
35
35
  end
36
36
  end
@@ -1,4 +1,4 @@
1
- require 'aruba/platforms/unix_environment_variables'
1
+ require "aruba/platforms/unix_environment_variables"
2
2
 
3
3
  # Aruba
4
4
  module Aruba
@@ -1,9 +1,9 @@
1
- require 'cucumber/platform'
1
+ require "cucumber/platform"
2
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'
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"
7
7
 
8
8
  # Aruba
9
9
  module Aruba
@@ -34,7 +34,7 @@ module Aruba
34
34
  end
35
35
 
36
36
  # @see UnixPlatform#which
37
- def which(program, path = ENV['PATH'])
37
+ def which(program, path = ENV["PATH"])
38
38
  WindowsWhich.new.call(program, path)
39
39
  end
40
40
 
@@ -49,7 +49,7 @@ module Aruba
49
49
  file = File.join(dir, program)
50
50
  # Dir[] doesn't handle backslashes properly, so convert them. Also, if
51
51
  # the program name doesn't have an extension, try them all.
52
- file = file.tr('\\', '/')
52
+ file = file.tr('\\', "/")
53
53
 
54
54
  found = Dir[file].first
55
55
 
@@ -84,7 +84,7 @@ module Aruba
84
84
  #
85
85
  # @param [String] path
86
86
  # ENV['PATH']
87
- def call(program, path = ENV['PATH'])
87
+ def call(program, path = ENV["PATH"])
88
88
  raise ArgumentError, "ENV['PATH'] cannot be empty" if path.nil? || path.empty?
89
89
 
90
90
  program = program.to_s
@@ -96,10 +96,10 @@ module Aruba
96
96
  private
97
97
 
98
98
  def windows_executable_extentions
99
- if ENV['PATHEXT']
100
- format('.{%s}', ENV['PATHEXT'].tr(';', ',').tr('.', '')).downcase
99
+ if ENV["PATHEXT"]
100
+ format(".{%s}", ENV["PATHEXT"].tr(";", ",").tr(".", "")).downcase
101
101
  else
102
- '.{exe,com,bat}'
102
+ ".{exe,com,bat}"
103
103
  end
104
104
  end
105
105
  end
@@ -1,5 +1,5 @@
1
- require 'aruba/platform'
2
- require 'shellwords'
1
+ require "aruba/platform"
2
+ require "shellwords"
3
3
 
4
4
  # Aruba
5
5
  module Aruba
@@ -1,4 +1,4 @@
1
- require 'aruba/processes/spawn_process'
1
+ require "aruba/processes/spawn_process"
2
2
 
3
3
  # Aruba
4
4
  module Aruba
@@ -41,8 +41,8 @@ module Aruba
41
41
  # @return [String]
42
42
  # A predefined string to make users aware they are using the DebugProcess
43
43
  def stdout(*)
44
- 'This is the debug launcher on STDOUT.' \
45
- ' If this output is unexpected, please check your setup.'
44
+ "This is the debug launcher on STDOUT." \
45
+ " If this output is unexpected, please check your setup."
46
46
  end
47
47
 
48
48
  # Return stderr
@@ -50,8 +50,8 @@ module Aruba
50
50
  # @return [String]
51
51
  # A predefined string to make users aware they are using the DebugProcess
52
52
  def stderr(*)
53
- 'This is the debug launcher on STDERR.' \
54
- ' If this output is unexpected, please check your setup.'
53
+ "This is the debug launcher on STDERR." \
54
+ " If this output is unexpected, please check your setup."
55
55
  end
56
56
 
57
57
  # Write to nothing
@@ -1,7 +1,7 @@
1
- require 'shellwords'
2
- require 'stringio'
3
- require 'aruba/processes/basic_process'
4
- require 'aruba/platform'
1
+ require "shellwords"
2
+ require "stringio"
3
+ require "aruba/processes/basic_process"
4
+ require "aruba/platform"
5
5
 
6
6
  # Aruba
7
7
  module Aruba
@@ -61,14 +61,14 @@ module Aruba
61
61
 
62
62
  # Start command
63
63
  def start
64
- raise 'You need to call aruba.config.main_class = YourMainClass' unless main_class
64
+ raise "You need to call aruba.config.main_class = YourMainClass" unless main_class
65
65
 
66
66
  @started = true
67
67
 
68
68
  Dir.chdir @working_directory do
69
69
  before_run
70
70
 
71
- Aruba.platform.with_environment environment.merge('PWD' => @working_directory) do
71
+ Aruba.platform.with_environment environment.merge("PWD" => @working_directory) do
72
72
  main_class.new(@argv, @stdin, @stdout, @stderr, @kernel).execute!
73
73
  end
74
74
 
@@ -110,7 +110,7 @@ module Aruba
110
110
  # Close io
111
111
  def close_io(name)
112
112
  unless [:stdin, :stdout, :stderr].include? name
113
- raise ArgumentError, 'Only stdin stdout and stderr are allowed to close'
113
+ raise ArgumentError, "Only stdin stdout and stderr are allowed to close"
114
114
  end
115
115
 
116
116
  get_instance_variable(name.to_sym).close
@@ -1,10 +1,10 @@
1
- require 'childprocess'
2
- require 'tempfile'
3
- require 'shellwords'
1
+ require "childprocess"
2
+ require "tempfile"
3
+ require "shellwords"
4
4
 
5
- require 'aruba/errors'
6
- require 'aruba/processes/basic_process'
7
- require 'aruba/platform'
5
+ require "aruba/errors"
6
+ require "aruba/processes/basic_process"
7
+ require "aruba/platform"
8
8
 
9
9
  # Aruba
10
10
  module Aruba
@@ -67,31 +67,28 @@ module Aruba
67
67
  if started?
68
68
  error_message =
69
69
  "Command \"#{commandline}\" has already been started." \
70
- ' Please `#stop` the command first and `#start` it again.' \
71
- ' Alternatively use `#restart`.'
70
+ " Please `#stop` the command first and `#start` it again." \
71
+ " Alternatively use `#restart`."
72
72
  raise CommandAlreadyStartedError, error_message
73
73
  end
74
74
 
75
75
  @started = true
76
76
 
77
77
  @process = ChildProcess.build(*command_string.to_a)
78
- @stdout_file = Tempfile.new('aruba-stdout-')
79
- @stderr_file = Tempfile.new('aruba-stderr-')
78
+ @stdout_file = Tempfile.new("aruba-stdout-")
79
+ @stderr_file = Tempfile.new("aruba-stderr-")
80
80
 
81
81
  @stdout_file.sync = true
82
82
  @stderr_file.sync = true
83
83
 
84
- if RUBY_VERSION >= '1.9'
85
- @stdout_file.set_encoding('ASCII-8BIT')
86
- @stderr_file.set_encoding('ASCII-8BIT')
87
- end
84
+ @stdout_file.set_encoding("ASCII-8BIT")
85
+ @stderr_file.set_encoding("ASCII-8BIT")
88
86
 
89
87
  @exit_status = nil
90
88
  @duplex = true
91
89
 
92
90
  before_run
93
91
 
94
- @process.leader = true
95
92
  @process.io.stdout = @stdout_file
96
93
  @process.io.stderr = @stderr_file
97
94
  @process.duplex = @duplex
@@ -275,12 +272,10 @@ module Aruba
275
272
 
276
273
  def command_path
277
274
  @command_path ||=
278
- begin
279
- if Aruba.platform.builtin_shell_commands.include?(command)
280
- command
281
- else
282
- Aruba.platform.which(command, environment['PATH'])
283
- end
275
+ if Aruba.platform.builtin_shell_commands.include?(command)
276
+ command
277
+ else
278
+ Aruba.platform.which(command, environment["PATH"])
284
279
  end
285
280
  end
286
281
 
@@ -295,7 +290,7 @@ module Aruba
295
290
  data = file.read
296
291
  file.close
297
292
 
298
- data.force_encoding('UTF-8')
293
+ data.force_encoding("UTF-8")
299
294
  end
300
295
  end
301
296
  end
data/lib/aruba/rspec.rb CHANGED
@@ -1,8 +1,8 @@
1
- require 'rspec/core'
1
+ require "rspec/core"
2
2
 
3
- require 'aruba'
4
- require 'aruba/api'
5
- require 'aruba/version'
3
+ require "aruba"
4
+ require "aruba/api"
5
+ require "aruba/version"
6
6
 
7
7
  RSpec.configure do |config|
8
8
  config.include Aruba::Api, type: :aruba
@@ -14,12 +14,12 @@ RSpec.configure do |config|
14
14
 
15
15
  # Modify PATH to include project/bin
16
16
  prepend_environment_variable(
17
- 'PATH',
17
+ "PATH",
18
18
  aruba.config.command_search_paths.join(File::PATH_SEPARATOR) + File::PATH_SEPARATOR
19
19
  )
20
20
 
21
21
  # Use configured home directory as HOME
22
- set_environment_variable 'HOME', aruba.config.home_directory
22
+ set_environment_variable "HOME", aruba.config.home_directory
23
23
  end
24
24
 
25
25
  example.run
data/lib/aruba/runtime.rb CHANGED
@@ -1,8 +1,8 @@
1
- require 'aruba/configuration'
2
- require 'aruba/aruba_path'
3
- require 'aruba/config_wrapper'
4
- require 'aruba/events'
5
- require 'aruba/event_bus'
1
+ require "aruba/configuration"
2
+ require "aruba/aruba_path"
3
+ require "aruba/config_wrapper"
4
+ require "aruba/events"
5
+ require "aruba/event_bus"
6
6
 
7
7
  module Aruba
8
8
  # Runtime of aruba
@@ -84,7 +84,7 @@ module Aruba
84
84
  directory = candidates.find { |d| Aruba.platform.directory? d }
85
85
 
86
86
  unless directory
87
- canditates_display = candidates.map { |d| format('"%s"', d) }.join(', ')
87
+ canditates_display = candidates.map { |d| format('"%s"', d) }.join(", ")
88
88
  raise "No existing fixtures directory found in #{canditates_display}."
89
89
  end
90
90
 
data/lib/aruba/setup.rb CHANGED
@@ -39,10 +39,10 @@ module Aruba
39
39
  :command_started,
40
40
  proc do |event|
41
41
  runtime.announcer.announce(:command) { event.entity.commandline }
42
- runtime.announcer.announce(:timeout, 'exit') { event.entity.exit_timeout }
43
- runtime.announcer.announce(:timeout, 'io wait') { event.entity.io_wait_timeout }
42
+ runtime.announcer.announce(:timeout, "exit") { event.entity.exit_timeout }
43
+ runtime.announcer.announce(:timeout, "io wait") { event.entity.io_wait_timeout }
44
44
  runtime.announcer
45
- .announce(:wait_time, 'startup wait time') { event.entity.startup_wait_time }
45
+ .announce(:wait_time, "startup wait time") { event.entity.startup_wait_time }
46
46
  runtime.announcer.announce(:full_environment) { event.entity.environment }
47
47
  end
48
48
  )
data/lib/aruba/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Aruba
2
- VERSION = '1.0.4'.freeze
2
+ VERSION = "1.1.0".freeze
3
3
  end
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: 1.0.4
4
+ version: 1.1.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: 2021-01-04 00:00:00.000000000 Z
11
+ date: 2021-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: childprocess
@@ -53,7 +53,7 @@ dependencies:
53
53
  version: '2.4'
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
- version: '6.0'
56
+ version: '7.0'
57
57
  type: :runtime
58
58
  prerelease: false
59
59
  version_requirements: !ruby/object:Gem::Requirement
@@ -63,7 +63,7 @@ dependencies:
63
63
  version: '2.4'
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
- version: '6.0'
66
+ version: '7.0'
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: rspec-expectations
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -107,19 +107,19 @@ dependencies:
107
107
  - !ruby/object:Gem::Version
108
108
  version: '2.1'
109
109
  - !ruby/object:Gem::Dependency
110
- name: license_finder
110
+ name: kramdown
111
111
  requirement: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - "~>"
114
114
  - !ruby/object:Gem::Version
115
- version: '6.0'
115
+ version: '2.1'
116
116
  type: :development
117
117
  prerelease: false
118
118
  version_requirements: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - "~>"
121
121
  - !ruby/object:Gem::Version
122
- version: '6.0'
122
+ version: '2.1'
123
123
  - !ruby/object:Gem::Dependency
124
124
  name: minitest
125
125
  requirement: !ruby/object:Gem::Requirement
@@ -168,14 +168,14 @@ dependencies:
168
168
  requirements:
169
169
  - - "~>"
170
170
  - !ruby/object:Gem::Version
171
- version: 0.1.0
171
+ version: 0.2.0
172
172
  type: :development
173
173
  prerelease: false
174
174
  version_requirements: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - "~>"
177
177
  - !ruby/object:Gem::Version
178
- version: 0.1.0
178
+ version: 0.2.0
179
179
  - !ruby/object:Gem::Dependency
180
180
  name: rspec
181
181
  requirement: !ruby/object:Gem::Requirement
@@ -196,14 +196,14 @@ dependencies:
196
196
  requirements:
197
197
  - - "~>"
198
198
  - !ruby/object:Gem::Version
199
- version: 1.6.0
199
+ version: 1.12.0
200
200
  type: :development
201
201
  prerelease: false
202
202
  version_requirements: !ruby/object:Gem::Requirement
203
203
  requirements:
204
204
  - - "~>"
205
205
  - !ruby/object:Gem::Version
206
- version: 1.6.0
206
+ version: 1.12.0
207
207
  - !ruby/object:Gem::Dependency
208
208
  name: rubocop-packaging
209
209
  requirement: !ruby/object:Gem::Requirement
@@ -224,28 +224,28 @@ dependencies:
224
224
  requirements:
225
225
  - - "~>"
226
226
  - !ruby/object:Gem::Version
227
- version: 1.9.0
227
+ version: 1.10.1
228
228
  type: :development
229
229
  prerelease: false
230
230
  version_requirements: !ruby/object:Gem::Requirement
231
231
  requirements:
232
232
  - - "~>"
233
233
  - !ruby/object:Gem::Version
234
- version: 1.9.0
234
+ version: 1.10.1
235
235
  - !ruby/object:Gem::Dependency
236
236
  name: rubocop-rspec
237
237
  requirement: !ruby/object:Gem::Requirement
238
238
  requirements:
239
239
  - - "~>"
240
240
  - !ruby/object:Gem::Version
241
- version: 2.1.0
241
+ version: 2.2.0
242
242
  type: :development
243
243
  prerelease: false
244
244
  version_requirements: !ruby/object:Gem::Requirement
245
245
  requirements:
246
246
  - - "~>"
247
247
  - !ruby/object:Gem::Version
248
- version: 2.1.0
248
+ version: 2.2.0
249
249
  - !ruby/object:Gem::Dependency
250
250
  name: simplecov
251
251
  requirement: !ruby/object:Gem::Requirement
@@ -255,7 +255,7 @@ dependencies:
255
255
  version: 0.18.0
256
256
  - - "<"
257
257
  - !ruby/object:Gem::Version
258
- version: 0.21.0
258
+ version: 0.22.0
259
259
  type: :development
260
260
  prerelease: false
261
261
  version_requirements: !ruby/object:Gem::Requirement
@@ -265,7 +265,7 @@ dependencies:
265
265
  version: 0.18.0
266
266
  - - "<"
267
267
  - !ruby/object:Gem::Version
268
- version: 0.21.0
268
+ version: 0.22.0
269
269
  - !ruby/object:Gem::Dependency
270
270
  name: yard-junk
271
271
  requirement: !ruby/object:Gem::Requirement
@@ -396,7 +396,6 @@ files:
396
396
  - lib/aruba/rspec.rb
397
397
  - lib/aruba/runtime.rb
398
398
  - lib/aruba/setup.rb
399
- - lib/aruba/tasks/docker_helpers.rb
400
399
  - lib/aruba/version.rb
401
400
  homepage: https://github.com/cucumber/aruba
402
401
  licenses:
@@ -407,7 +406,7 @@ metadata:
407
406
  documentation_uri: https://www.rubydoc.info/gems/aruba
408
407
  homepage_uri: https://github.com/cucumber/aruba
409
408
  source_code_uri: https://github.com/cucumber/aruba
410
- post_install_message:
409
+ post_install_message:
411
410
  rdoc_options:
412
411
  - "--charset"
413
412
  - UTF-8
@@ -427,7 +426,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
427
426
  version: '0'
428
427
  requirements: []
429
428
  rubygems_version: 3.2.3
430
- signing_key:
429
+ signing_key:
431
430
  specification_version: 4
432
- summary: aruba-1.0.4
431
+ summary: aruba-1.1.0
433
432
  test_files: []