aruba 1.0.0 → 1.0.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/.rubocop.yml +29 -8
- data/.rubocop_todo.yml +100 -146
- data/CHANGELOG.md +23 -1
- data/CONTRIBUTING.md +0 -8
- data/Gemfile +3 -1
- data/Rakefile +6 -4
- data/appveyor.yml +0 -1
- data/aruba.gemspec +7 -4
- data/fixtures/cli-app/cli-app.gemspec +3 -2
- data/fixtures/cli-app/spec/spec_helper.rb +2 -1
- data/fixtures/empty-app/cli-app.gemspec +3 -2
- data/lib/aruba/api/bundler.rb +1 -1
- data/lib/aruba/api/commands.rb +8 -11
- data/lib/aruba/api/core.rb +48 -33
- data/lib/aruba/api/environment.rb +12 -4
- data/lib/aruba/api/filesystem.rb +27 -23
- data/lib/aruba/api/text.rb +15 -3
- data/lib/aruba/basic_configuration.rb +5 -6
- data/lib/aruba/basic_configuration/option.rb +2 -2
- data/lib/aruba/cli.rb +4 -1
- data/lib/aruba/config_wrapper.rb +17 -2
- data/lib/aruba/configuration.rb +27 -12
- data/lib/aruba/console.rb +0 -2
- data/lib/aruba/console/help.rb +5 -2
- data/lib/aruba/contracts/absolute_path.rb +1 -1
- data/lib/aruba/contracts/is_power_of_two.rb +2 -2
- data/lib/aruba/contracts/relative_path.rb +1 -1
- data/lib/aruba/cucumber/command.rb +83 -64
- data/lib/aruba/cucumber/file.rb +42 -22
- data/lib/aruba/cucumber/hooks.rb +4 -1
- data/lib/aruba/cucumber/testing_frameworks.rb +14 -12
- data/lib/aruba/event_bus.rb +4 -2
- data/lib/aruba/event_bus/name_resolver.rb +9 -8
- data/lib/aruba/events.rb +2 -1
- data/lib/aruba/hooks.rb +2 -4
- data/lib/aruba/in_config_wrapper.rb +8 -5
- data/lib/aruba/initializer.rb +5 -3
- data/lib/aruba/matchers/base/base_matcher.rb +2 -11
- data/lib/aruba/matchers/base/object_formatter.rb +0 -3
- data/lib/aruba/matchers/collection/include_an_object.rb +4 -4
- data/lib/aruba/matchers/command/be_successfully_executed.rb +3 -1
- data/lib/aruba/matchers/command/have_exit_status.rb +3 -1
- data/lib/aruba/matchers/command/have_finished_in_time.rb +3 -1
- data/lib/aruba/matchers/command/have_output.rb +3 -1
- data/lib/aruba/matchers/command/have_output_on_stderr.rb +3 -1
- data/lib/aruba/matchers/command/have_output_on_stdout.rb +3 -1
- data/lib/aruba/matchers/directory/have_sub_directory.rb +8 -3
- data/lib/aruba/matchers/file/have_file_size.rb +4 -2
- data/lib/aruba/matchers/path/have_permissions.rb +4 -2
- data/lib/aruba/platforms/announcer.rb +18 -6
- data/lib/aruba/platforms/aruba_file_creator.rb +3 -1
- data/lib/aruba/platforms/aruba_fixed_size_file_creator.rb +7 -2
- data/lib/aruba/platforms/command_monitor.rb +3 -3
- data/lib/aruba/platforms/unix_environment_variables.rb +2 -4
- data/lib/aruba/platforms/unix_which.rb +1 -1
- data/lib/aruba/platforms/windows_environment_variables.rb +2 -1
- data/lib/aruba/platforms/windows_which.rb +6 -2
- data/lib/aruba/processes/debug_process.rb +4 -2
- data/lib/aruba/processes/in_process.rb +4 -2
- data/lib/aruba/processes/spawn_process.rb +18 -10
- data/lib/aruba/rspec.rb +25 -15
- data/lib/aruba/runtime.rb +11 -4
- data/lib/aruba/setup.rb +23 -10
- data/lib/aruba/tasks/docker_helpers.rb +3 -1
- data/lib/aruba/version.rb +1 -1
- metadata +22 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78af1111ebd1c66984dd8ad454318e6eba06e183cfd844bcf1e5e794103ea756
|
4
|
+
data.tar.gz: a4821903017781b016eb1510833e31c9421e79589a69b804d7fab1bc646e8d1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11b800a1afc27d83cd804685793e1ddc2cba21151b648a2f62ebc4016566d7cacc7c3f9fef578259ed0a00b50dd5ab6d0fd0a45c11f454b88a4648af3b4138e9
|
7
|
+
data.tar.gz: af2fc428c1fc809e39e87e7060be821a44a5fcba1b3cc131f7334e8ad2a516dc90375aea4d28b13299b51c5147c820a2bc765c936fee5095182b58a1ac1d3de3
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-performance
|
3
|
+
- rubocop-rspec
|
3
4
|
|
4
5
|
AllCops:
|
5
6
|
Exclude:
|
@@ -13,19 +14,39 @@ Style/PercentLiteralDelimiters:
|
|
13
14
|
PreferredDelimiters:
|
14
15
|
'%w': ()
|
15
16
|
|
17
|
+
# SupportedStyles: percent, brackets
|
18
|
+
Style/SymbolArray:
|
19
|
+
EnforcedStyle: brackets
|
20
|
+
|
16
21
|
# Code is currently broken with frozen string literal comments applied.
|
17
22
|
# TODO: Enable and fix build
|
18
23
|
Style/FrozenStringLiteralComment:
|
19
24
|
Enabled: false
|
20
25
|
|
21
|
-
#
|
22
|
-
# Most of these need to be manually tackled, the LineLength value currently is good enough to stop most of
|
23
|
-
# these leaking through into the codebase
|
24
|
-
# Offense count: 375+
|
25
|
-
# Cop supports --auto-correct.
|
26
|
-
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
27
|
-
# URISchemes: http, https
|
26
|
+
# Be relatively lenient with line length
|
28
27
|
Layout/LineLength:
|
29
|
-
Max:
|
28
|
+
Max: 94
|
29
|
+
|
30
|
+
# Enable new cops from RuboCop 0.80, 0.81 and 0.84
|
31
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
32
|
+
Enabled: true
|
33
|
+
Layout/SpaceAroundMethodCallOperator:
|
34
|
+
Enabled: true
|
35
|
+
Lint/DeprecatedOpenSSLConstant:
|
36
|
+
Enabled: true
|
37
|
+
Lint/RaiseException:
|
38
|
+
Enabled: true
|
39
|
+
Lint/StructNewOverride:
|
40
|
+
Enabled: true
|
41
|
+
Style/ExponentialNotation:
|
42
|
+
Enabled: true
|
43
|
+
Style/HashEachMethods:
|
44
|
+
Enabled: true
|
45
|
+
Style/HashTransformKeys:
|
46
|
+
Enabled: true
|
47
|
+
Style/HashTransformValues:
|
48
|
+
Enabled: true
|
49
|
+
Style/SlicingWithRange:
|
50
|
+
Enabled: true
|
30
51
|
|
31
52
|
inherit_from: .rubocop_todo.yml
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2020-
|
3
|
+
# on 2020-05-31 23:12:24 +0200 using RuboCop version 0.84.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -11,11 +11,6 @@ Lint/AmbiguousBlockAssociation:
|
|
11
11
|
Exclude:
|
12
12
|
- 'lib/aruba/platforms/announcer.rb'
|
13
13
|
|
14
|
-
# Offense count: 12
|
15
|
-
Lint/AmbiguousRegexpLiteral:
|
16
|
-
Exclude:
|
17
|
-
- 'lib/aruba/cucumber/testing_frameworks.rb'
|
18
|
-
|
19
14
|
# Offense count: 2
|
20
15
|
# Configuration parameters: CheckForMethodsWithNoSideEffects.
|
21
16
|
Lint/Void:
|
@@ -23,7 +18,8 @@ Lint/Void:
|
|
23
18
|
- 'lib/aruba/platforms/announcer.rb'
|
24
19
|
- 'lib/aruba/platforms/unix_environment_variables.rb'
|
25
20
|
|
26
|
-
# Offense count:
|
21
|
+
# Offense count: 26
|
22
|
+
# Configuration parameters: IgnoredMethods.
|
27
23
|
Metrics/AbcSize:
|
28
24
|
Max: 116
|
29
25
|
|
@@ -31,31 +27,37 @@ Metrics/AbcSize:
|
|
31
27
|
# Configuration parameters: CountComments, ExcludedMethods.
|
32
28
|
# ExcludedMethods: refine
|
33
29
|
Metrics/BlockLength:
|
34
|
-
Max:
|
30
|
+
Max: 594
|
35
31
|
|
36
32
|
# Offense count: 2
|
37
33
|
# Configuration parameters: CountComments.
|
38
34
|
Metrics/ClassLength:
|
39
|
-
Max:
|
35
|
+
Max: 158
|
40
36
|
|
41
|
-
# Offense count:
|
37
|
+
# Offense count: 5
|
38
|
+
# Configuration parameters: IgnoredMethods.
|
39
|
+
Metrics/CyclomaticComplexity:
|
40
|
+
Max: 12
|
41
|
+
|
42
|
+
# Offense count: 28
|
42
43
|
# Configuration parameters: CountComments, ExcludedMethods.
|
43
44
|
Metrics/MethodLength:
|
44
|
-
Max:
|
45
|
+
Max: 59
|
45
46
|
|
46
|
-
# Offense count:
|
47
|
+
# Offense count: 3
|
47
48
|
# Configuration parameters: CountComments.
|
48
49
|
Metrics/ModuleLength:
|
49
|
-
Max:
|
50
|
+
Max: 182
|
50
51
|
|
51
52
|
# Offense count: 3
|
52
53
|
# Configuration parameters: CountKeywordArgs.
|
53
54
|
Metrics/ParameterLists:
|
54
55
|
Max: 8
|
55
56
|
|
56
|
-
# Offense count:
|
57
|
+
# Offense count: 5
|
58
|
+
# Configuration parameters: IgnoredMethods.
|
57
59
|
Metrics/PerceivedComplexity:
|
58
|
-
Max:
|
60
|
+
Max: 13
|
59
61
|
|
60
62
|
# Offense count: 1
|
61
63
|
Naming/ConstantName:
|
@@ -76,14 +78,13 @@ Naming/MemoizedInstanceVariableName:
|
|
76
78
|
Exclude:
|
77
79
|
- 'lib/aruba/api/core.rb'
|
78
80
|
|
79
|
-
# Offense count:
|
81
|
+
# Offense count: 14
|
80
82
|
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
81
|
-
# AllowedNames: io, id, to, by, on, in, at, ip, db, os
|
83
|
+
# AllowedNames: io, id, to, by, on, in, at, ip, db, os, pp
|
82
84
|
Naming/MethodParameterName:
|
83
85
|
Exclude:
|
84
86
|
- 'lib/aruba/aruba_path.rb'
|
85
87
|
- 'lib/aruba/config_wrapper.rb'
|
86
|
-
- 'lib/aruba/matchers/base/object_formatter.rb'
|
87
88
|
- 'lib/aruba/platforms/announcer.rb'
|
88
89
|
- 'lib/aruba/platforms/aruba_logger.rb'
|
89
90
|
- 'lib/aruba/platforms/unix_platform.rb'
|
@@ -94,44 +95,101 @@ Performance/Caller:
|
|
94
95
|
Exclude:
|
95
96
|
- 'lib/aruba/platforms/unix_platform.rb'
|
96
97
|
|
98
|
+
# Offense count: 51
|
99
|
+
# Configuration parameters: Prefixes.
|
100
|
+
# Prefixes: when, with, without
|
101
|
+
RSpec/ContextWording:
|
102
|
+
Exclude:
|
103
|
+
- 'spec/aruba/api/filesystem_spec.rb'
|
104
|
+
- 'spec/aruba/api/runtime_spec.rb'
|
105
|
+
- 'spec/aruba/api_spec.rb'
|
106
|
+
- 'spec/aruba/matchers/command_spec.rb'
|
107
|
+
- 'spec/aruba/matchers/file_spec.rb'
|
108
|
+
- 'spec/aruba/matchers/path_spec.rb'
|
109
|
+
- 'spec/aruba/platform/windows_environment_variables_spec.rb'
|
110
|
+
- 'spec/support/shared_contexts/aruba.rb'
|
111
|
+
|
112
|
+
# Offense count: 10
|
113
|
+
RSpec/DescribeClass:
|
114
|
+
Exclude:
|
115
|
+
- 'spec/aruba/api/runtime_spec.rb'
|
116
|
+
- 'spec/aruba/jruby_spec.rb'
|
117
|
+
- 'spec/aruba/matchers/collection_spec.rb'
|
118
|
+
- 'spec/aruba/matchers/command/have_output_size_spec.rb'
|
119
|
+
- 'spec/aruba/matchers/command_spec.rb'
|
120
|
+
- 'spec/aruba/matchers/directory_spec.rb'
|
121
|
+
- 'spec/aruba/matchers/file_spec.rb'
|
122
|
+
- 'spec/aruba/matchers/path_spec.rb'
|
123
|
+
- 'spec/aruba/platform/simple_table_spec.rb'
|
124
|
+
- 'spec/aruba/rspec_spec.rb'
|
125
|
+
|
126
|
+
# Offense count: 19
|
127
|
+
# Configuration parameters: Max.
|
128
|
+
RSpec/ExampleLength:
|
129
|
+
Exclude:
|
130
|
+
- 'spec/aruba/api/core_spec.rb'
|
131
|
+
- 'spec/aruba/api/filesystem_spec.rb'
|
132
|
+
- 'spec/aruba/aruba_path_spec.rb'
|
133
|
+
- 'spec/aruba/matchers/collection_spec.rb'
|
134
|
+
|
135
|
+
# Offense count: 4
|
136
|
+
# Configuration parameters: CustomTransform, IgnoreMethods.
|
137
|
+
RSpec/FilePath:
|
138
|
+
Exclude:
|
139
|
+
- 'spec/aruba/platform/windows_environment_variables_spec.rb'
|
140
|
+
- 'spec/aruba/platforms/command_monitor_spec.rb'
|
141
|
+
- 'spec/event_bus/name_resolver_spec.rb'
|
142
|
+
- 'spec/event_bus_spec.rb'
|
143
|
+
|
144
|
+
# Offense count: 298
|
145
|
+
# Configuration parameters: AssignmentOnly.
|
146
|
+
RSpec/InstanceVariable:
|
147
|
+
Exclude:
|
148
|
+
- 'spec/aruba/api/bundler_spec.rb'
|
149
|
+
- 'spec/aruba/api/commands_spec.rb'
|
150
|
+
- 'spec/aruba/api/core_spec.rb'
|
151
|
+
- 'spec/aruba/api/filesystem_spec.rb'
|
152
|
+
- 'spec/aruba/api_spec.rb'
|
153
|
+
- 'spec/aruba/matchers/command/have_output_size_spec.rb'
|
154
|
+
- 'spec/aruba/matchers/command_spec.rb'
|
155
|
+
- 'spec/aruba/matchers/directory_spec.rb'
|
156
|
+
- 'spec/aruba/matchers/file_spec.rb'
|
157
|
+
- 'spec/aruba/matchers/path_spec.rb'
|
158
|
+
- 'spec/aruba/processes/in_process_spec.rb'
|
159
|
+
- 'spec/event_bus_spec.rb'
|
160
|
+
- 'spec/support/shared_contexts/aruba.rb'
|
161
|
+
|
162
|
+
# Offense count: 32
|
163
|
+
RSpec/MultipleExpectations:
|
164
|
+
Max: 5
|
165
|
+
|
166
|
+
# Offense count: 187
|
167
|
+
RSpec/NestedGroups:
|
168
|
+
Max: 6
|
169
|
+
|
170
|
+
# Offense count: 1
|
171
|
+
RSpec/UnspecifiedException:
|
172
|
+
Exclude:
|
173
|
+
- 'spec/aruba/runtime_spec.rb'
|
174
|
+
|
97
175
|
# Offense count: 2
|
98
176
|
Security/Open:
|
99
177
|
Exclude:
|
100
178
|
- 'lib/aruba/processes/spawn_process.rb'
|
101
179
|
|
102
|
-
# Offense count:
|
103
|
-
# Configuration parameters: EnforcedStyle.
|
180
|
+
# Offense count: 1
|
181
|
+
# Configuration parameters: EnforcedStyle, AllowModifiersOnSymbols.
|
104
182
|
# SupportedStyles: inline, group
|
105
183
|
Style/AccessModifierDeclarations:
|
106
184
|
Exclude:
|
107
|
-
- 'lib/aruba/in_config_wrapper.rb'
|
108
|
-
- 'lib/aruba/matchers/base/base_matcher.rb'
|
109
185
|
- 'lib/aruba/matchers/collection/all.rb'
|
110
186
|
|
111
187
|
# Offense count: 3
|
188
|
+
# Configuration parameters: AllowOnConstant.
|
112
189
|
Style/CaseEquality:
|
113
190
|
Exclude:
|
114
191
|
- 'lib/aruba/matchers/base/object_formatter.rb'
|
115
192
|
|
116
|
-
# Offense count: 1
|
117
|
-
# Cop supports --auto-correct.
|
118
|
-
Style/CharacterLiteral:
|
119
|
-
Exclude:
|
120
|
-
- 'spec/support/shared_contexts/aruba.rb'
|
121
|
-
|
122
|
-
# Offense count: 4
|
123
|
-
# Cop supports --auto-correct.
|
124
|
-
# Configuration parameters: EnforcedStyle.
|
125
|
-
# SupportedStyles: is_a?, kind_of?
|
126
|
-
Style/ClassCheck:
|
127
|
-
Exclude:
|
128
|
-
- 'lib/aruba/api/filesystem.rb'
|
129
|
-
|
130
|
-
# Offense count: 1
|
131
|
-
Style/CommentedKeyword:
|
132
|
-
Exclude:
|
133
|
-
- 'spec/aruba/api_spec.rb'
|
134
|
-
|
135
193
|
# Offense count: 12
|
136
194
|
Style/Documentation:
|
137
195
|
Exclude:
|
@@ -146,117 +204,13 @@ Style/Documentation:
|
|
146
204
|
- 'lib/aruba/setup.rb'
|
147
205
|
- 'lib/aruba/tasks/docker_helpers.rb'
|
148
206
|
|
149
|
-
# Offense count:
|
150
|
-
Style/EvalWithLocation:
|
151
|
-
Exclude:
|
152
|
-
- 'spec/support/helpers/reporting.rb'
|
153
|
-
|
154
|
-
# Offense count: 84
|
207
|
+
# Offense count: 83
|
155
208
|
# Configuration parameters: EnforcedStyle.
|
156
209
|
# SupportedStyles: annotated, template, unannotated
|
157
210
|
Style/FormatStringToken:
|
158
211
|
Enabled: false
|
159
212
|
|
160
213
|
# Offense count: 2
|
161
|
-
Style/IdenticalConditionalBranches:
|
162
|
-
Exclude:
|
163
|
-
- 'lib/aruba/hooks.rb'
|
164
|
-
|
165
|
-
# Offense count: 7
|
166
|
-
# Cop supports --auto-correct.
|
167
|
-
Style/IfUnlessModifier:
|
168
|
-
Exclude:
|
169
|
-
- 'lib/aruba/cucumber/command.rb'
|
170
|
-
- 'lib/aruba/matchers/collection/include_an_object.rb'
|
171
|
-
- 'lib/aruba/platforms/unix_environment_variables.rb'
|
172
|
-
- 'lib/aruba/setup.rb'
|
173
|
-
- 'spec/aruba/platform/windows_environment_variables_spec.rb'
|
174
|
-
|
175
|
-
# Offense count: 2
|
176
|
-
# Cop supports --auto-correct.
|
177
|
-
# Configuration parameters: EnforcedStyle.
|
178
|
-
# SupportedStyles: line_count_dependent, lambda, literal
|
179
|
-
Style/Lambda:
|
180
|
-
Exclude:
|
181
|
-
- 'spec/aruba/hooks_spec.rb'
|
182
|
-
|
183
|
-
# Offense count: 5
|
184
214
|
Style/MethodMissingSuper:
|
185
215
|
Exclude:
|
186
|
-
- 'lib/aruba/config_wrapper.rb'
|
187
|
-
- 'lib/aruba/in_config_wrapper.rb'
|
188
216
|
- 'lib/aruba/platforms/command_monitor.rb'
|
189
|
-
- 'lib/aruba/tasks/docker_helpers.rb'
|
190
|
-
|
191
|
-
# Offense count: 4
|
192
|
-
# Cop supports --auto-correct.
|
193
|
-
# Configuration parameters: AllowedMethods.
|
194
|
-
# AllowedMethods: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with
|
195
|
-
Style/NestedParenthesizedCalls:
|
196
|
-
Exclude:
|
197
|
-
- 'spec/aruba/matchers/collection_spec.rb'
|
198
|
-
|
199
|
-
# Offense count: 1
|
200
|
-
# Cop supports --auto-correct.
|
201
|
-
# Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
|
202
|
-
# SupportedStyles: predicate, comparison
|
203
|
-
Style/NumericPredicate:
|
204
|
-
Exclude:
|
205
|
-
- 'spec/**/*'
|
206
|
-
- 'lib/aruba/contracts/is_power_of_two.rb'
|
207
|
-
|
208
|
-
# Offense count: 3
|
209
|
-
# Cop supports --auto-correct.
|
210
|
-
# Configuration parameters: PreferredDelimiters.
|
211
|
-
Style/PercentLiteralDelimiters:
|
212
|
-
Exclude:
|
213
|
-
- 'Rakefile'
|
214
|
-
- 'lib/aruba/api/bundler.rb'
|
215
|
-
|
216
|
-
# Offense count: 2
|
217
|
-
# Cop supports --auto-correct.
|
218
|
-
# Configuration parameters: EnforcedStyle, AllowInnerSlashes.
|
219
|
-
# SupportedStyles: slashes, percent_r, mixed
|
220
|
-
Style/RegexpLiteral:
|
221
|
-
Exclude:
|
222
|
-
- 'lib/aruba/cucumber/command.rb'
|
223
|
-
- 'lib/aruba/cucumber/file.rb'
|
224
|
-
|
225
|
-
# Offense count: 4
|
226
|
-
# Cop supports --auto-correct.
|
227
|
-
# Configuration parameters: EnforcedStyle.
|
228
|
-
# SupportedStyles: implicit, explicit
|
229
|
-
Style/RescueStandardError:
|
230
|
-
Exclude:
|
231
|
-
- 'lib/aruba/contracts/absolute_path.rb'
|
232
|
-
- 'lib/aruba/contracts/is_power_of_two.rb'
|
233
|
-
- 'lib/aruba/contracts/relative_path.rb'
|
234
|
-
- 'lib/aruba/event_bus/name_resolver.rb'
|
235
|
-
|
236
|
-
# Offense count: 1
|
237
|
-
# Cop supports --auto-correct.
|
238
|
-
# Configuration parameters: AllowAsExpressionSeparator.
|
239
|
-
Style/Semicolon:
|
240
|
-
Exclude:
|
241
|
-
- 'lib/aruba/platforms/aruba_fixed_size_file_creator.rb'
|
242
|
-
|
243
|
-
# Offense count: 40
|
244
|
-
# Cop supports --auto-correct.
|
245
|
-
# Configuration parameters: EnforcedStyle.
|
246
|
-
# SupportedStyles: only_raise, only_fail, semantic
|
247
|
-
Style/SignalException:
|
248
|
-
Enabled: false
|
249
|
-
|
250
|
-
# Offense count: 2
|
251
|
-
# Cop supports --auto-correct.
|
252
|
-
Style/StderrPuts:
|
253
|
-
Exclude:
|
254
|
-
- 'Rakefile'
|
255
|
-
- 'lib/aruba/initializer.rb'
|
256
|
-
|
257
|
-
# Offense count: 6
|
258
|
-
# Cop supports --auto-correct.
|
259
|
-
# Configuration parameters: MinSize.
|
260
|
-
# SupportedStyles: percent, brackets
|
261
|
-
Style/SymbolArray:
|
262
|
-
EnforcedStyle: brackets
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,19 @@ This project adheres to [Semantic Versioning][1].
|
|
6
6
|
|
7
7
|
This document is formatted according to the principles of [Keep A CHANGELOG][2].
|
8
8
|
|
9
|
+
## [1.0.1]
|
10
|
+
|
11
|
+
### Bug fixes
|
12
|
+
|
13
|
+
* Allow use of Aruba with Cucumber 4 ([#715] by [mvz])
|
14
|
+
|
15
|
+
### Code quality and documentation improvements
|
16
|
+
|
17
|
+
* Fix RuboCop offenses ([#693] and [#708] by [luke-hill], [#710], [#711] and
|
18
|
+
[#712] by [mvz])
|
19
|
+
* Use recent Rake version in fixtures ([#709] by [mvz])
|
20
|
+
* Repair YARD annotations ([#707] by [olleolleolle])
|
21
|
+
|
9
22
|
## [1.0.0]
|
10
23
|
|
11
24
|
### Breaking changes compared to Aruba 0.14.x
|
@@ -922,12 +935,20 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
922
935
|
|
923
936
|
<!-- issues & pull requests -->
|
924
937
|
|
938
|
+
[#715]: https://github.com/cucumber/aruba/pull/715
|
939
|
+
[#712]: https://github.com/cucumber/aruba/pull/712
|
940
|
+
[#711]: https://github.com/cucumber/aruba/pull/711
|
941
|
+
[#710]: https://github.com/cucumber/aruba/pull/710
|
942
|
+
[#709]: https://github.com/cucumber/aruba/pull/709
|
943
|
+
[#708]: https://github.com/cucumber/aruba/pull/708
|
944
|
+
[#707]: https://github.com/cucumber/aruba/pull/707
|
925
945
|
[#704]: https://github.com/cucumber/aruba/pull/704
|
926
946
|
[#703]: https://github.com/cucumber/aruba/pull/703
|
927
947
|
[#702]: https://github.com/cucumber/aruba/pull/702
|
928
948
|
[#701]: https://github.com/cucumber/aruba/pull/701
|
929
949
|
[#698]: https://github.com/cucumber/aruba/pull/698
|
930
950
|
[#696]: https://github.com/cucumber/aruba/pull/696
|
951
|
+
[#693]: https://github.com/cucumber/aruba/pull/693
|
931
952
|
[#692]: https://github.com/cucumber/aruba/pull/692
|
932
953
|
[#690]: https://github.com/cucumber/aruba/pull/690
|
933
954
|
[#689]: https://github.com/cucumber/aruba/pull/689
|
@@ -1186,7 +1207,8 @@ Note: These are changes w.r.t. Aruba version 0.14.1.
|
|
1186
1207
|
|
1187
1208
|
<!-- Releases -->
|
1188
1209
|
|
1189
|
-
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.
|
1210
|
+
[Unreleased]: https://github.com/cucumber/aruba/compare/v1.0.1...master
|
1211
|
+
[1.0.1]: https://github.com/cucumber/aruba/compare/v1.0.0...v1.0.1
|
1190
1212
|
[1.0.0]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.5...v1.0.0
|
1191
1213
|
[1.0.0.pre.alpha.5]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.4...v1.0.0.pre.alpha.5
|
1192
1214
|
[1.0.0.pre.alpha.4]: https://github.com/cucumber/aruba/compare/v1.0.0.pre.alpha.3...v1.0.0.pre.alpha.4
|