aruba 1.0.2 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +54 -2
  3. data/CONTRIBUTING.md +18 -22
  4. data/README.md +7 -8
  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 +19 -3
  9. data/lib/aruba/api/commands.rb +11 -11
  10. data/lib/aruba/api/core.rb +21 -21
  11. data/lib/aruba/api/environment.rb +2 -2
  12. data/lib/aruba/api/filesystem.rb +41 -15
  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 +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 +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 +1 -1
  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 +103 -88
  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
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.2'.freeze
2
+ VERSION = "1.1.2".freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.2
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-19 00:00:00.000000000 Z
11
+ date: 2021-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '3.0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.17'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '3.0'
13
33
  - !ruby/object:Gem::Dependency
14
34
  name: childprocess
15
35
  requirement: !ruby/object:Gem::Requirement
@@ -34,16 +54,22 @@ dependencies:
34
54
  name: contracts
35
55
  requirement: !ruby/object:Gem::Requirement
36
56
  requirements:
37
- - - "~>"
57
+ - - ">="
38
58
  - !ruby/object:Gem::Version
39
59
  version: 0.16.0
60
+ - - "<"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.18.0
40
63
  type: :runtime
41
64
  prerelease: false
42
65
  version_requirements: !ruby/object:Gem::Requirement
43
66
  requirements:
44
- - - "~>"
67
+ - - ">="
45
68
  - !ruby/object:Gem::Version
46
69
  version: 0.16.0
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: 0.18.0
47
73
  - !ruby/object:Gem::Dependency
48
74
  name: cucumber
49
75
  requirement: !ruby/object:Gem::Requirement
@@ -53,7 +79,7 @@ dependencies:
53
79
  version: '2.4'
54
80
  - - "<"
55
81
  - !ruby/object:Gem::Version
56
- version: '5.0'
82
+ version: '7.0'
57
83
  type: :runtime
58
84
  prerelease: false
59
85
  version_requirements: !ruby/object:Gem::Requirement
@@ -63,49 +89,49 @@ dependencies:
63
89
  version: '2.4'
64
90
  - - "<"
65
91
  - !ruby/object:Gem::Version
66
- version: '5.0'
92
+ version: '7.0'
67
93
  - !ruby/object:Gem::Dependency
68
- name: ffi
94
+ name: rspec-expectations
69
95
  requirement: !ruby/object:Gem::Requirement
70
96
  requirements:
71
97
  - - "~>"
72
98
  - !ruby/object:Gem::Version
73
- version: '1.9'
99
+ version: '3.4'
74
100
  type: :runtime
75
101
  prerelease: false
76
102
  version_requirements: !ruby/object:Gem::Requirement
77
103
  requirements:
78
104
  - - "~>"
79
105
  - !ruby/object:Gem::Version
80
- version: '1.9'
106
+ version: '3.4'
81
107
  - !ruby/object:Gem::Dependency
82
- name: rspec-expectations
108
+ name: thor
83
109
  requirement: !ruby/object:Gem::Requirement
84
110
  requirements:
85
111
  - - "~>"
86
112
  - !ruby/object:Gem::Version
87
- version: '3.4'
113
+ version: '1.0'
88
114
  type: :runtime
89
115
  prerelease: false
90
116
  version_requirements: !ruby/object:Gem::Requirement
91
117
  requirements:
92
118
  - - "~>"
93
119
  - !ruby/object:Gem::Version
94
- version: '3.4'
120
+ version: '1.0'
95
121
  - !ruby/object:Gem::Dependency
96
- name: thor
122
+ name: appraisal
97
123
  requirement: !ruby/object:Gem::Requirement
98
124
  requirements:
99
125
  - - "~>"
100
126
  - !ruby/object:Gem::Version
101
- version: '1.0'
102
- type: :runtime
127
+ version: '2.4'
128
+ type: :development
103
129
  prerelease: false
104
130
  version_requirements: !ruby/object:Gem::Requirement
105
131
  requirements:
106
132
  - - "~>"
107
133
  - !ruby/object:Gem::Version
108
- version: '1.0'
134
+ version: '2.4'
109
135
  - !ruby/object:Gem::Dependency
110
136
  name: json
111
137
  requirement: !ruby/object:Gem::Requirement
@@ -121,19 +147,19 @@ dependencies:
121
147
  - !ruby/object:Gem::Version
122
148
  version: '2.1'
123
149
  - !ruby/object:Gem::Dependency
124
- name: license_finder
150
+ name: kramdown
125
151
  requirement: !ruby/object:Gem::Requirement
126
152
  requirements:
127
153
  - - "~>"
128
154
  - !ruby/object:Gem::Version
129
- version: '6.0'
155
+ version: '2.1'
130
156
  type: :development
131
157
  prerelease: false
132
158
  version_requirements: !ruby/object:Gem::Requirement
133
159
  requirements:
134
160
  - - "~>"
135
161
  - !ruby/object:Gem::Version
136
- version: '6.0'
162
+ version: '2.1'
137
163
  - !ruby/object:Gem::Dependency
138
164
  name: minitest
139
165
  requirement: !ruby/object:Gem::Requirement
@@ -164,88 +190,128 @@ dependencies:
164
190
  version: '1.0'
165
191
  - !ruby/object:Gem::Dependency
166
192
  name: rake
193
+ requirement: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ">="
196
+ - !ruby/object:Gem::Version
197
+ version: '12.0'
198
+ - - "<"
199
+ - !ruby/object:Gem::Version
200
+ version: '14.0'
201
+ type: :development
202
+ prerelease: false
203
+ version_requirements: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: '12.0'
208
+ - - "<"
209
+ - !ruby/object:Gem::Version
210
+ version: '14.0'
211
+ - !ruby/object:Gem::Dependency
212
+ name: rake-manifest
167
213
  requirement: !ruby/object:Gem::Requirement
168
214
  requirements:
169
215
  - - "~>"
170
216
  - !ruby/object:Gem::Version
171
- version: '13.0'
217
+ version: 0.2.0
172
218
  type: :development
173
219
  prerelease: false
174
220
  version_requirements: !ruby/object:Gem::Requirement
175
221
  requirements:
176
222
  - - "~>"
177
223
  - !ruby/object:Gem::Version
178
- version: '13.0'
224
+ version: 0.2.0
179
225
  - !ruby/object:Gem::Dependency
180
226
  name: rspec
181
227
  requirement: !ruby/object:Gem::Requirement
182
228
  requirements:
183
229
  - - "~>"
184
230
  - !ruby/object:Gem::Version
185
- version: '3.6'
231
+ version: 3.10.0
186
232
  type: :development
187
233
  prerelease: false
188
234
  version_requirements: !ruby/object:Gem::Requirement
189
235
  requirements:
190
236
  - - "~>"
191
237
  - !ruby/object:Gem::Version
192
- version: '3.6'
238
+ version: 3.10.0
193
239
  - !ruby/object:Gem::Dependency
194
240
  name: rubocop
195
241
  requirement: !ruby/object:Gem::Requirement
196
242
  requirements:
197
243
  - - "~>"
198
244
  - !ruby/object:Gem::Version
199
- version: '0.85'
245
+ version: 1.12.0
200
246
  type: :development
201
247
  prerelease: false
202
248
  version_requirements: !ruby/object:Gem::Requirement
203
249
  requirements:
204
250
  - - "~>"
205
251
  - !ruby/object:Gem::Version
206
- version: '0.85'
252
+ version: 1.12.0
253
+ - !ruby/object:Gem::Dependency
254
+ name: rubocop-packaging
255
+ requirement: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - "~>"
258
+ - !ruby/object:Gem::Version
259
+ version: 0.5.0
260
+ type: :development
261
+ prerelease: false
262
+ version_requirements: !ruby/object:Gem::Requirement
263
+ requirements:
264
+ - - "~>"
265
+ - !ruby/object:Gem::Version
266
+ version: 0.5.0
207
267
  - !ruby/object:Gem::Dependency
208
268
  name: rubocop-performance
209
269
  requirement: !ruby/object:Gem::Requirement
210
270
  requirements:
211
271
  - - "~>"
212
272
  - !ruby/object:Gem::Version
213
- version: '1.5'
273
+ version: 1.10.1
214
274
  type: :development
215
275
  prerelease: false
216
276
  version_requirements: !ruby/object:Gem::Requirement
217
277
  requirements:
218
278
  - - "~>"
219
279
  - !ruby/object:Gem::Version
220
- version: '1.5'
280
+ version: 1.10.1
221
281
  - !ruby/object:Gem::Dependency
222
282
  name: rubocop-rspec
223
283
  requirement: !ruby/object:Gem::Requirement
224
284
  requirements:
225
285
  - - "~>"
226
286
  - !ruby/object:Gem::Version
227
- version: '1.39'
287
+ version: 2.2.0
228
288
  type: :development
229
289
  prerelease: false
230
290
  version_requirements: !ruby/object:Gem::Requirement
231
291
  requirements:
232
292
  - - "~>"
233
293
  - !ruby/object:Gem::Version
234
- version: '1.39'
294
+ version: 2.2.0
235
295
  - !ruby/object:Gem::Dependency
236
296
  name: simplecov
237
297
  requirement: !ruby/object:Gem::Requirement
238
298
  requirements:
239
- - - "~>"
299
+ - - ">="
240
300
  - !ruby/object:Gem::Version
241
301
  version: 0.18.0
302
+ - - "<"
303
+ - !ruby/object:Gem::Version
304
+ version: 0.22.0
242
305
  type: :development
243
306
  prerelease: false
244
307
  version_requirements: !ruby/object:Gem::Requirement
245
308
  requirements:
246
- - - "~>"
309
+ - - ">="
247
310
  - !ruby/object:Gem::Version
248
311
  version: 0.18.0
312
+ - - "<"
313
+ - !ruby/object:Gem::Version
314
+ version: 0.22.0
249
315
  - !ruby/object:Gem::Dependency
250
316
  name: yard-junk
251
317
  requirement: !ruby/object:Gem::Requirement
@@ -262,7 +328,7 @@ dependencies:
262
328
  version: 0.0.7
263
329
  description: |
264
330
  Extension for popular TDD and BDD frameworks like "Cucumber", "RSpec" and "Minitest",
265
- to make testing commandline applications meaningful, easy and fun.
331
+ to make testing command line applications meaningful, easy and fun.
266
332
  email: cukes@googlegroups.com
267
333
  executables:
268
334
  - aruba
@@ -273,60 +339,11 @@ extra_rdoc_files:
273
339
  - README.md
274
340
  - LICENSE
275
341
  files:
276
- - ".cucumberproignore"
277
- - ".document"
278
- - ".github/ISSUE_TEMPLATE.md"
279
- - ".github/PULL_REQUEST_TEMPLATE.md"
280
- - ".gitignore"
281
- - ".rspec"
282
- - ".rubocop.yml"
283
- - ".rubocop_todo.yml"
284
- - ".simplecov"
285
- - ".travis.yml"
286
- - ".yardopts"
287
342
  - CHANGELOG.md
288
343
  - CONTRIBUTING.md
289
- - Dockerfile
290
- - Gemfile
291
344
  - LICENSE
292
345
  - README.md
293
- - Rakefile
294
- - TODO.md
295
- - appveyor.yml
296
- - aruba.gemspec
297
- - bin/console
298
- - bin/test
299
- - config/.gitignore
300
- - cucumber.yml
301
- - doc/dependency_decisions.yml
302
- - docker-compose.yml
303
346
  - exe/aruba
304
- - fixtures/cli-app/.gitignore
305
- - fixtures/cli-app/.rspec
306
- - fixtures/cli-app/README.md
307
- - fixtures/cli-app/Rakefile
308
- - fixtures/cli-app/bin/aruba-test-cli
309
- - fixtures/cli-app/cli-app.gemspec
310
- - fixtures/cli-app/features/support/aruba.rb
311
- - fixtures/cli-app/features/support/env.rb
312
- - fixtures/cli-app/lib/cli/app.rb
313
- - fixtures/cli-app/lib/cli/app/suppress_simple_cov_output.rb
314
- - fixtures/cli-app/lib/cli/app/version.rb
315
- - fixtures/cli-app/script/console
316
- - fixtures/cli-app/spec/spec_helper.rb
317
- - fixtures/cli-app/spec/support/aruba.rb
318
- - fixtures/copy/file.txt
319
- - fixtures/empty-app/.gitignore
320
- - fixtures/empty-app/.rspec
321
- - fixtures/empty-app/README.md
322
- - fixtures/empty-app/Rakefile
323
- - fixtures/empty-app/cli-app.gemspec
324
- - fixtures/empty-app/lib/cli/app.rb
325
- - fixtures/empty-app/lib/cli/app/version.rb
326
- - fixtures/getting-started-app/.gitignore
327
- - fixtures/getting-started-app/Gemfile
328
- - fixtures/getting-started-app/README.md
329
- - fixtures/getting-started-app/features/support/env.rb
330
347
  - lib/aruba.rb
331
348
  - lib/aruba/api.rb
332
349
  - lib/aruba/api/bundler.rb
@@ -360,7 +377,6 @@ files:
360
377
  - lib/aruba/event_bus.rb
361
378
  - lib/aruba/event_bus/name_resolver.rb
362
379
  - lib/aruba/events.rb
363
- - lib/aruba/extensions/string/strip.rb
364
380
  - lib/aruba/file_size.rb
365
381
  - lib/aruba/generators/script_file.rb
366
382
  - lib/aruba/hooks.rb
@@ -426,7 +442,6 @@ files:
426
442
  - lib/aruba/rspec.rb
427
443
  - lib/aruba/runtime.rb
428
444
  - lib/aruba/setup.rb
429
- - lib/aruba/tasks/docker_helpers.rb
430
445
  - lib/aruba/version.rb
431
446
  homepage: https://github.com/cucumber/aruba
432
447
  licenses:
@@ -437,7 +452,7 @@ metadata:
437
452
  documentation_uri: https://www.rubydoc.info/gems/aruba
438
453
  homepage_uri: https://github.com/cucumber/aruba
439
454
  source_code_uri: https://github.com/cucumber/aruba
440
- post_install_message:
455
+ post_install_message:
441
456
  rdoc_options:
442
457
  - "--charset"
443
458
  - UTF-8
@@ -456,8 +471,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
456
471
  - !ruby/object:Gem::Version
457
472
  version: '0'
458
473
  requirements: []
459
- rubygems_version: 3.1.2
460
- signing_key:
474
+ rubygems_version: 3.2.15
475
+ signing_key:
461
476
  specification_version: 4
462
- summary: aruba-1.0.2
477
+ summary: aruba-1.1.2
463
478
  test_files: []