aruba 1.0.1 → 1.1.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.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +56 -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 -12
  8. data/lib/aruba/api/bundler.rb +18 -3
  9. data/lib/aruba/api/commands.rb +11 -11
  10. data/lib/aruba/api/core.rb +27 -25
  11. data/lib/aruba/api/environment.rb +2 -2
  12. data/lib/aruba/api/filesystem.rb +42 -16
  13. data/lib/aruba/api/text.rb +4 -4
  14. data/lib/aruba/aruba_path.rb +3 -4
  15. data/lib/aruba/basic_configuration.rb +51 -69
  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 +36 -46
  21. data/lib/aruba/console.rb +11 -11
  22. data/lib/aruba/console/help.rb +7 -7
  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 +41 -49
  29. data/lib/aruba/cucumber/environment.rb +7 -7
  30. data/lib/aruba/cucumber/file.rb +8 -4
  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 +2 -2
  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 +5 -4
  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 +15 -15
  71. data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +1 -1
  72. data/lib/aruba/platforms/aruba_logger.rb +11 -10
  73. data/lib/aruba/platforms/command_monitor.rb +6 -8
  74. data/lib/aruba/platforms/determine_disk_usage.rb +2 -4
  75. data/lib/aruba/platforms/filesystem_status.rb +20 -14
  76. data/lib/aruba/platforms/simple_table.rb +3 -3
  77. data/lib/aruba/platforms/unix_command_string.rb +2 -2
  78. data/lib/aruba/platforms/unix_environment_variables.rb +1 -1
  79. data/lib/aruba/platforms/unix_platform.rb +23 -23
  80. data/lib/aruba/platforms/unix_which.rb +1 -1
  81. data/lib/aruba/platforms/windows_command_string.rb +2 -2
  82. data/lib/aruba/platforms/windows_environment_variables.rb +1 -1
  83. data/lib/aruba/platforms/windows_platform.rb +7 -7
  84. data/lib/aruba/platforms/windows_which.rb +5 -5
  85. data/lib/aruba/processes/basic_process.rb +4 -4
  86. data/lib/aruba/processes/debug_process.rb +5 -5
  87. data/lib/aruba/processes/in_process.rb +8 -8
  88. data/lib/aruba/processes/spawn_process.rb +18 -23
  89. data/lib/aruba/rspec.rb +6 -6
  90. data/lib/aruba/runtime.rb +6 -6
  91. data/lib/aruba/setup.rb +3 -3
  92. data/lib/aruba/version.rb +1 -1
  93. metadata +75 -94
  94. data/.cucumberproignore +0 -3
  95. data/.document +0 -5
  96. data/.github/ISSUE_TEMPLATE.md +0 -48
  97. data/.github/PULL_REQUEST_TEMPLATE.md +0 -41
  98. data/.gitignore +0 -38
  99. data/.rspec +0 -3
  100. data/.rubocop.yml +0 -52
  101. data/.rubocop_todo.yml +0 -216
  102. data/.simplecov +0 -36
  103. data/.travis.yml +0 -62
  104. data/.yardopts +0 -11
  105. data/Dockerfile +0 -67
  106. data/Gemfile +0 -14
  107. data/Rakefile +0 -82
  108. data/TODO.md +0 -13
  109. data/appveyor.yml +0 -28
  110. data/aruba.gemspec +0 -57
  111. data/bin/console +0 -7
  112. data/bin/test +0 -9
  113. data/config/.gitignore +0 -1
  114. data/cucumber.yml +0 -6
  115. data/docker-compose.yml +0 -26
  116. data/fixtures/cli-app/.gitignore +0 -9
  117. data/fixtures/cli-app/.rspec +0 -2
  118. data/fixtures/cli-app/README.md +0 -39
  119. data/fixtures/cli-app/Rakefile +0 -1
  120. data/fixtures/cli-app/bin/aruba-test-cli +0 -6
  121. data/fixtures/cli-app/cli-app.gemspec +0 -26
  122. data/fixtures/cli-app/features/support/aruba.rb +0 -1
  123. data/fixtures/cli-app/features/support/env.rb +0 -1
  124. data/fixtures/cli-app/lib/cli/app.rb +0 -9
  125. data/fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb +0 -15
  126. data/fixtures/cli-app/lib/cli/app/version.rb +0 -5
  127. data/fixtures/cli-app/script/console +0 -14
  128. data/fixtures/cli-app/spec/spec_helper.rb +0 -8
  129. data/fixtures/cli-app/spec/support/aruba.rb +0 -1
  130. data/fixtures/copy/file.txt +0 -1
  131. data/fixtures/empty-app/.gitignore +0 -9
  132. data/fixtures/empty-app/.rspec +0 -2
  133. data/fixtures/empty-app/README.md +0 -24
  134. data/fixtures/empty-app/Rakefile +0 -1
  135. data/fixtures/empty-app/cli-app.gemspec +0 -26
  136. data/fixtures/empty-app/lib/cli/app.rb +0 -7
  137. data/fixtures/empty-app/lib/cli/app/version.rb +0 -5
  138. data/fixtures/getting-started-app/.gitignore +0 -4
  139. data/fixtures/getting-started-app/Gemfile +0 -4
  140. data/fixtures/getting-started-app/README.md +0 -3
  141. data/fixtures/getting-started-app/features/support/env.rb +0 -1
  142. data/lib/aruba/extensions/string/strip.rb +0 -25
  143. data/lib/aruba/tasks/docker_helpers.rb +0 -156
@@ -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
@@ -46,7 +46,7 @@ module Aruba
46
46
  # @private
47
47
  attr_reader :main_class
48
48
 
49
- def initialize(cmd, exit_timeout, io_wait_timeout, working_directory,
49
+ def initialize(cmd, exit_timeout, io_wait_timeout, working_directory, # rubocop:disable Metrics/ParameterLists
50
50
  environment = Aruba.platform.environment_variables.hash_from_env,
51
51
  main_class = nil, stop_signal = nil, startup_wait_time = 0)
52
52
  @cmd = cmd
@@ -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
@@ -48,7 +48,7 @@ module Aruba
48
48
  #
49
49
  # @param [Numeric] startup_wait_time
50
50
  # The amount of seconds to wait after Aruba has started a command.
51
- def initialize(cmd, exit_timeout, io_wait_timeout, working_directory,
51
+ def initialize(cmd, exit_timeout, io_wait_timeout, working_directory, # rubocop:disable Metrics/ParameterLists
52
52
  environment = Aruba.platform.environment_variables.hash_from_env,
53
53
  main_class = nil, stop_signal = nil, startup_wait_time = 0)
54
54
  super
@@ -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.1'.freeze
2
+ VERSION = "1.1.1".freeze
3
3
  end
metadata CHANGED
@@ -1,43 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.1
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: 2020-06-05 00:00:00.000000000 Z
11
+ date: 2021-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: childprocess
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '2.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '2.0'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '3.0'
32
+ version: '5.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: contracts
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
- - - "~>"
37
+ - - ">="
32
38
  - !ruby/object:Gem::Version
33
39
  version: 0.16.0
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: 0.18.0
34
43
  type: :runtime
35
44
  prerelease: false
36
45
  version_requirements: !ruby/object:Gem::Requirement
37
46
  requirements:
38
- - - "~>"
47
+ - - ">="
39
48
  - !ruby/object:Gem::Version
40
49
  version: 0.16.0
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: 0.18.0
41
53
  - !ruby/object:Gem::Dependency
42
54
  name: cucumber
43
55
  requirement: !ruby/object:Gem::Requirement
@@ -47,7 +59,7 @@ dependencies:
47
59
  version: '2.4'
48
60
  - - "<"
49
61
  - !ruby/object:Gem::Version
50
- version: '5.0'
62
+ version: '7.0'
51
63
  type: :runtime
52
64
  prerelease: false
53
65
  version_requirements: !ruby/object:Gem::Requirement
@@ -57,21 +69,7 @@ dependencies:
57
69
  version: '2.4'
58
70
  - - "<"
59
71
  - !ruby/object:Gem::Version
60
- version: '5.0'
61
- - !ruby/object:Gem::Dependency
62
- name: ffi
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '1.9'
68
- type: :runtime
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '1.9'
72
+ version: '7.0'
75
73
  - !ruby/object:Gem::Dependency
76
74
  name: rspec-expectations
77
75
  requirement: !ruby/object:Gem::Requirement
@@ -115,19 +113,19 @@ dependencies:
115
113
  - !ruby/object:Gem::Version
116
114
  version: '2.1'
117
115
  - !ruby/object:Gem::Dependency
118
- name: license_finder
116
+ name: kramdown
119
117
  requirement: !ruby/object:Gem::Requirement
120
118
  requirements:
121
119
  - - "~>"
122
120
  - !ruby/object:Gem::Version
123
- version: '6.0'
121
+ version: '2.1'
124
122
  type: :development
125
123
  prerelease: false
126
124
  version_requirements: !ruby/object:Gem::Requirement
127
125
  requirements:
128
126
  - - "~>"
129
127
  - !ruby/object:Gem::Version
130
- version: '6.0'
128
+ version: '2.1'
131
129
  - !ruby/object:Gem::Dependency
132
130
  name: minitest
133
131
  requirement: !ruby/object:Gem::Requirement
@@ -170,76 +168,110 @@ dependencies:
170
168
  - - "~>"
171
169
  - !ruby/object:Gem::Version
172
170
  version: '13.0'
171
+ - !ruby/object:Gem::Dependency
172
+ name: rake-manifest
173
+ requirement: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - "~>"
176
+ - !ruby/object:Gem::Version
177
+ version: 0.2.0
178
+ type: :development
179
+ prerelease: false
180
+ version_requirements: !ruby/object:Gem::Requirement
181
+ requirements:
182
+ - - "~>"
183
+ - !ruby/object:Gem::Version
184
+ version: 0.2.0
173
185
  - !ruby/object:Gem::Dependency
174
186
  name: rspec
175
187
  requirement: !ruby/object:Gem::Requirement
176
188
  requirements:
177
189
  - - "~>"
178
190
  - !ruby/object:Gem::Version
179
- version: '3.6'
191
+ version: 3.10.0
180
192
  type: :development
181
193
  prerelease: false
182
194
  version_requirements: !ruby/object:Gem::Requirement
183
195
  requirements:
184
196
  - - "~>"
185
197
  - !ruby/object:Gem::Version
186
- version: '3.6'
198
+ version: 3.10.0
187
199
  - !ruby/object:Gem::Dependency
188
200
  name: rubocop
189
201
  requirement: !ruby/object:Gem::Requirement
190
202
  requirements:
191
203
  - - "~>"
192
204
  - !ruby/object:Gem::Version
193
- version: 0.84.0
205
+ version: 1.12.0
206
+ type: :development
207
+ prerelease: false
208
+ version_requirements: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - "~>"
211
+ - !ruby/object:Gem::Version
212
+ version: 1.12.0
213
+ - !ruby/object:Gem::Dependency
214
+ name: rubocop-packaging
215
+ requirement: !ruby/object:Gem::Requirement
216
+ requirements:
217
+ - - "~>"
218
+ - !ruby/object:Gem::Version
219
+ version: 0.5.0
194
220
  type: :development
195
221
  prerelease: false
196
222
  version_requirements: !ruby/object:Gem::Requirement
197
223
  requirements:
198
224
  - - "~>"
199
225
  - !ruby/object:Gem::Version
200
- version: 0.84.0
226
+ version: 0.5.0
201
227
  - !ruby/object:Gem::Dependency
202
228
  name: rubocop-performance
203
229
  requirement: !ruby/object:Gem::Requirement
204
230
  requirements:
205
231
  - - "~>"
206
232
  - !ruby/object:Gem::Version
207
- version: '1.5'
233
+ version: 1.10.1
208
234
  type: :development
209
235
  prerelease: false
210
236
  version_requirements: !ruby/object:Gem::Requirement
211
237
  requirements:
212
238
  - - "~>"
213
239
  - !ruby/object:Gem::Version
214
- version: '1.5'
240
+ version: 1.10.1
215
241
  - !ruby/object:Gem::Dependency
216
242
  name: rubocop-rspec
217
243
  requirement: !ruby/object:Gem::Requirement
218
244
  requirements:
219
245
  - - "~>"
220
246
  - !ruby/object:Gem::Version
221
- version: '1.39'
247
+ version: 2.2.0
222
248
  type: :development
223
249
  prerelease: false
224
250
  version_requirements: !ruby/object:Gem::Requirement
225
251
  requirements:
226
252
  - - "~>"
227
253
  - !ruby/object:Gem::Version
228
- version: '1.39'
254
+ version: 2.2.0
229
255
  - !ruby/object:Gem::Dependency
230
256
  name: simplecov
231
257
  requirement: !ruby/object:Gem::Requirement
232
258
  requirements:
233
- - - "~>"
259
+ - - ">="
234
260
  - !ruby/object:Gem::Version
235
261
  version: 0.18.0
262
+ - - "<"
263
+ - !ruby/object:Gem::Version
264
+ version: 0.22.0
236
265
  type: :development
237
266
  prerelease: false
238
267
  version_requirements: !ruby/object:Gem::Requirement
239
268
  requirements:
240
- - - "~>"
269
+ - - ">="
241
270
  - !ruby/object:Gem::Version
242
271
  version: 0.18.0
272
+ - - "<"
273
+ - !ruby/object:Gem::Version
274
+ version: 0.22.0
243
275
  - !ruby/object:Gem::Dependency
244
276
  name: yard-junk
245
277
  requirement: !ruby/object:Gem::Requirement
@@ -256,7 +288,7 @@ dependencies:
256
288
  version: 0.0.7
257
289
  description: |
258
290
  Extension for popular TDD and BDD frameworks like "Cucumber", "RSpec" and "Minitest",
259
- to make testing commandline applications meaningful, easy and fun.
291
+ to make testing command line applications meaningful, easy and fun.
260
292
  email: cukes@googlegroups.com
261
293
  executables:
262
294
  - aruba
@@ -267,60 +299,11 @@ extra_rdoc_files:
267
299
  - README.md
268
300
  - LICENSE
269
301
  files:
270
- - ".cucumberproignore"
271
- - ".document"
272
- - ".github/ISSUE_TEMPLATE.md"
273
- - ".github/PULL_REQUEST_TEMPLATE.md"
274
- - ".gitignore"
275
- - ".rspec"
276
- - ".rubocop.yml"
277
- - ".rubocop_todo.yml"
278
- - ".simplecov"
279
- - ".travis.yml"
280
- - ".yardopts"
281
302
  - CHANGELOG.md
282
303
  - CONTRIBUTING.md
283
- - Dockerfile
284
- - Gemfile
285
304
  - LICENSE
286
305
  - README.md
287
- - Rakefile
288
- - TODO.md
289
- - appveyor.yml
290
- - aruba.gemspec
291
- - bin/console
292
- - bin/test
293
- - config/.gitignore
294
- - cucumber.yml
295
- - doc/dependency_decisions.yml
296
- - docker-compose.yml
297
306
  - exe/aruba
298
- - fixtures/cli-app/.gitignore
299
- - fixtures/cli-app/.rspec
300
- - fixtures/cli-app/README.md
301
- - fixtures/cli-app/Rakefile
302
- - fixtures/cli-app/bin/aruba-test-cli
303
- - fixtures/cli-app/cli-app.gemspec
304
- - fixtures/cli-app/features/support/aruba.rb
305
- - fixtures/cli-app/features/support/env.rb
306
- - fixtures/cli-app/lib/cli/app.rb
307
- - fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb
308
- - fixtures/cli-app/lib/cli/app/version.rb
309
- - fixtures/cli-app/script/console
310
- - fixtures/cli-app/spec/spec_helper.rb
311
- - fixtures/cli-app/spec/support/aruba.rb
312
- - fixtures/copy/file.txt
313
- - fixtures/empty-app/.gitignore
314
- - fixtures/empty-app/.rspec
315
- - fixtures/empty-app/README.md
316
- - fixtures/empty-app/Rakefile
317
- - fixtures/empty-app/cli-app.gemspec
318
- - fixtures/empty-app/lib/cli/app.rb
319
- - fixtures/empty-app/lib/cli/app/version.rb
320
- - fixtures/getting-started-app/.gitignore
321
- - fixtures/getting-started-app/Gemfile
322
- - fixtures/getting-started-app/README.md
323
- - fixtures/getting-started-app/features/support/env.rb
324
307
  - lib/aruba.rb
325
308
  - lib/aruba/api.rb
326
309
  - lib/aruba/api/bundler.rb
@@ -354,7 +337,6 @@ files:
354
337
  - lib/aruba/event_bus.rb
355
338
  - lib/aruba/event_bus/name_resolver.rb
356
339
  - lib/aruba/events.rb
357
- - lib/aruba/extensions/string/strip.rb
358
340
  - lib/aruba/file_size.rb
359
341
  - lib/aruba/generators/script_file.rb
360
342
  - lib/aruba/hooks.rb
@@ -420,7 +402,6 @@ files:
420
402
  - lib/aruba/rspec.rb
421
403
  - lib/aruba/runtime.rb
422
404
  - lib/aruba/setup.rb
423
- - lib/aruba/tasks/docker_helpers.rb
424
405
  - lib/aruba/version.rb
425
406
  homepage: https://github.com/cucumber/aruba
426
407
  licenses:
@@ -431,7 +412,7 @@ metadata:
431
412
  documentation_uri: https://www.rubydoc.info/gems/aruba
432
413
  homepage_uri: https://github.com/cucumber/aruba
433
414
  source_code_uri: https://github.com/cucumber/aruba
434
- post_install_message:
415
+ post_install_message:
435
416
  rdoc_options:
436
417
  - "--charset"
437
418
  - UTF-8
@@ -450,8 +431,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
450
431
  - !ruby/object:Gem::Version
451
432
  version: '0'
452
433
  requirements: []
453
- rubygems_version: 3.1.2
454
- signing_key:
434
+ rubygems_version: 3.2.15
435
+ signing_key:
455
436
  specification_version: 4
456
- summary: aruba-1.0.1
437
+ summary: aruba-1.1.1
457
438
  test_files: []