cuke_linter 1.2.1 → 1.4.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 +217 -200
- data/LICENSE.txt +21 -21
- data/README.md +160 -160
- data/cuke_linter.gemspec +59 -58
- data/exe/cuke_linter +112 -112
- data/lib/cuke_linter/configuration.rb +45 -45
- data/lib/cuke_linter/default_linters.rb +32 -32
- data/lib/cuke_linter/formatters/pretty_formatter.rb +84 -84
- data/lib/cuke_linter/gherkin.rb +10 -10
- data/lib/cuke_linter/linter_registration.rb +32 -32
- data/lib/cuke_linter/linters/background_does_more_than_setup_linter.rb +35 -36
- data/lib/cuke_linter/linters/element_with_common_tags_linter.rb +49 -50
- data/lib/cuke_linter/linters/element_with_duplicate_tags_linter.rb +48 -49
- data/lib/cuke_linter/linters/element_with_too_many_tags_linter.rb +46 -47
- data/lib/cuke_linter/linters/example_without_name_linter.rb +19 -20
- data/lib/cuke_linter/linters/feature_file_with_invalid_name_linter.rb +20 -21
- data/lib/cuke_linter/linters/feature_file_with_mismatched_name_linter.rb +25 -26
- data/lib/cuke_linter/linters/feature_with_too_many_different_tags_linter.rb +35 -36
- data/lib/cuke_linter/linters/feature_without_description_linter.rb +19 -20
- data/lib/cuke_linter/linters/feature_without_name_linter.rb +19 -20
- data/lib/cuke_linter/linters/feature_without_scenarios_linter.rb +23 -20
- data/lib/cuke_linter/linters/linter.rb +42 -43
- data/lib/cuke_linter/linters/outline_with_single_example_row_linter.rb +22 -23
- data/lib/cuke_linter/linters/single_test_background_linter.rb +19 -20
- data/lib/cuke_linter/linters/step_with_end_period_linter.rb +19 -20
- data/lib/cuke_linter/linters/step_with_too_many_characters_linter.rb +38 -39
- data/lib/cuke_linter/linters/test_name_with_too_many_characters_linter.rb +38 -0
- data/lib/cuke_linter/linters/test_should_use_background_linter.rb +80 -80
- data/lib/cuke_linter/linters/test_with_action_step_as_final_step_linter.rb +33 -34
- data/lib/cuke_linter/linters/test_with_bad_name_linter.rb +23 -24
- data/lib/cuke_linter/linters/test_with_no_action_step_linter.rb +33 -34
- data/lib/cuke_linter/linters/test_with_no_name_linter.rb +19 -20
- data/lib/cuke_linter/linters/test_with_no_verification_step_linter.rb +33 -34
- data/lib/cuke_linter/linters/test_with_setup_step_after_action_step_linter.rb +46 -47
- data/lib/cuke_linter/linters/test_with_setup_step_after_verification_step_linter.rb +46 -47
- data/lib/cuke_linter/linters/test_with_setup_step_as_final_step_linter.rb +33 -34
- data/lib/cuke_linter/linters/test_with_too_many_steps_linter.rb +27 -28
- data/lib/cuke_linter/version.rb +4 -4
- data/lib/cuke_linter.rb +196 -198
- data/testing/cucumber/features/command_line.feature +202 -202
- data/testing/cucumber/features/configuration/configuring_linters.feature +58 -58
- data/testing/cucumber/features/configuration/locally_scoping_linters.feature +55 -55
- data/testing/cucumber/features/configuration/using_configurations.feature +41 -41
- data/testing/cucumber/features/custom_linters.feature +56 -56
- data/testing/cucumber/features/default_linters.feature +57 -57
- data/testing/cucumber/features/formatters/pretty_formatter.feature +26 -26
- data/testing/cucumber/features/linters/background_does_more_than_setup.feature +84 -84
- data/testing/cucumber/features/linters/element_with_common_tags.feature +28 -28
- data/testing/cucumber/features/linters/element_with_duplicate_tags.feature +71 -71
- data/testing/cucumber/features/linters/element_with_too_many_tags.feature +70 -70
- data/testing/cucumber/features/linters/example_without_name.feature +34 -34
- data/testing/cucumber/features/linters/feature_file_with_invalid_name.feature +20 -20
- data/testing/cucumber/features/linters/feature_file_with_mismatched_name.feature +32 -32
- data/testing/cucumber/features/linters/feature_with_too_many_different_tags.feature +56 -56
- data/testing/cucumber/features/linters/feature_without_description.feature +17 -17
- data/testing/cucumber/features/linters/feature_without_name.feature +18 -18
- data/testing/cucumber/features/linters/feature_without_scenarios.feature +39 -17
- data/testing/cucumber/features/linters/outline_with_single_example_row.feature +23 -23
- data/testing/cucumber/features/linters/single_test_background.feature +24 -24
- data/testing/cucumber/features/linters/step_too_long.feature +43 -43
- data/testing/cucumber/features/linters/step_with_end_period.feature +21 -21
- data/testing/cucumber/features/linters/test_name_too_long.feature +41 -0
- data/testing/cucumber/features/linters/test_should_use_background.feature +29 -29
- data/testing/cucumber/features/linters/test_with_action_as_final_step.feature +50 -50
- data/testing/cucumber/features/linters/test_with_bad_name.feature +29 -29
- data/testing/cucumber/features/linters/test_with_no_action_step.feature +56 -56
- data/testing/cucumber/features/linters/test_with_no_name.feature +23 -23
- data/testing/cucumber/features/linters/test_with_no_verification_step.feature +58 -58
- data/testing/cucumber/features/linters/test_with_setup_step_after_action_step.feature +57 -57
- data/testing/cucumber/features/linters/test_with_setup_step_after_verification_step.feature +57 -57
- data/testing/cucumber/features/linters/test_with_setup_step_as_final_step.feature +50 -50
- data/testing/cucumber/features/linters/test_with_too_many_steps.feature +61 -61
- metadata +23 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81278d1cb23a92d60a037f740e334f3f51ebe4e57a298827613b920b3eef325f
|
|
4
|
+
data.tar.gz: acdd8537f7f2d2d93e10faf9837ce583f98e18b12831ba99e837656a228de2f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4151e021a06aef1c73ce3ae4f91d2b4d732c7205031d008f4a94eb341180514bcd0c9537ceb41ea39f340fa0e6441c9622f089b585bef03a2789e23a75b4ce7e
|
|
7
|
+
data.tar.gz: 50add9101d3e4a9eb28776381544b448a757c0c7a82ea6fc997bafbf4499bb1b5dfa9bd4f2d888329af01b8c24950f1983820adfbdf63696db1ed9cfb91043f0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,200 +1,217 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
-
|
|
4
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [Unreleased]
|
|
8
|
-
|
|
9
|
-
Nothing yet...
|
|
10
|
-
|
|
11
|
-
## [1.
|
|
12
|
-
|
|
13
|
-
###
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
###
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
[
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
[0.
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
[
|
|
195
|
-
[
|
|
196
|
-
[
|
|
197
|
-
[
|
|
198
|
-
[
|
|
199
|
-
[
|
|
200
|
-
[0.1
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
Nothing yet...
|
|
10
|
+
|
|
11
|
+
## [1.4.0] - 2026-01-18
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Ruby 4.x is now supported
|
|
15
|
+
|
|
16
|
+
## [1.3.0] - 2022-05-23
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- New linters
|
|
20
|
+
- TestNameWithTooManyCharactersLinter
|
|
21
|
+
|
|
22
|
+
- Linters that are impacted by `Rule` elements in Gherkin have been updated, now that Rules models are available
|
|
23
|
+
in CukeModeler
|
|
24
|
+
- FeatureWithoutScenariosLinter
|
|
25
|
+
|
|
26
|
+
## [1.2.1] - 2021-06-13
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- Updated the minimum required Ruby version to `2.1`. The gem has never had `2.0` compatible code (due to using
|
|
30
|
+
named parameters without default values), so it's easier to just officially drop `2.0` 'support' than to change
|
|
31
|
+
the API to enable a use case that was never used anyway.
|
|
32
|
+
|
|
33
|
+
## [1.2.0] - 2021-01-08
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
- Ruby 3.x is now supported
|
|
37
|
+
|
|
38
|
+
## [1.1.0] - 2020-06-14
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
- Now compatible with CukeModeler 3.x
|
|
42
|
+
|
|
43
|
+
## [1.0.1] - 2020-05-06
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
- Replaced some code that was not valid with earlier versions of Ruby 2.x, with which this gem is specified as being compatible.
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## [1.0.0] - 2020-03-09
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
- No longer including every file in the Git repository as part of the gem. Only the files needed for using the linter (and the informative ones like the README) will be packaged into the released gem.
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## [0.13.0] - 2020-03-01
|
|
56
|
+
|
|
57
|
+
### Added
|
|
58
|
+
- Added the ability to configure relevant keywords for linters whose behavior is impacted by the dialect in which feature files are written.
|
|
59
|
+
- BackgroundDoesMoreThanSetupLinter
|
|
60
|
+
- TestWithActionStepAsFinalStepLinter
|
|
61
|
+
- TestWithNoActionStepLinter
|
|
62
|
+
- TestWithNoVerificationStepLinter
|
|
63
|
+
- TestWithSetupStepAfterActionStepLinter
|
|
64
|
+
- TestWithSetupStepAfterVerificationStepLinter
|
|
65
|
+
- TestWithSetupStepAsFinalStepLinter
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## [0.12.1] - 2020-02-15
|
|
69
|
+
|
|
70
|
+
### Fixed
|
|
71
|
+
- `TestShouldUseBackgroundLinter` no longer suggests moving steps to the background if they have an outline parameter.
|
|
72
|
+
|
|
73
|
+
## [0.12.0] - 2020-02-13
|
|
74
|
+
|
|
75
|
+
### Added
|
|
76
|
+
- New linters
|
|
77
|
+
- ElementWithCommonTagsLinter
|
|
78
|
+
- ElementWithDuplicateTagsLinter
|
|
79
|
+
- FeatureFileWithMismatchedNameLinter
|
|
80
|
+
|
|
81
|
+
- Now compatible with CukeModeler 2.x
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
## [0.11.1] - 2019-11-07
|
|
85
|
+
|
|
86
|
+
### Fixed
|
|
87
|
+
- Fixed the Pretty formatter so that it can handle linting problems whose locations do not have a line number.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## [0.11.0] - 2019-11-01
|
|
91
|
+
|
|
92
|
+
### Added
|
|
93
|
+
- New linters
|
|
94
|
+
- FeatureFileWithInvalidNameLinter
|
|
95
|
+
- TestWithBadNameLinter
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## [0.10.0] - 2019-10-04
|
|
99
|
+
|
|
100
|
+
### Added
|
|
101
|
+
- New linters
|
|
102
|
+
- FeatureWithTooManyDifferentTagsLinter
|
|
103
|
+
- TestShouldUseBackgroundLinter
|
|
104
|
+
- TestWithActionStepAsFinalStepLinter
|
|
105
|
+
- TestWithSetupStepAfterActionStepLinter
|
|
106
|
+
- TestWithSetupStepAfterVerificationStepLinter
|
|
107
|
+
- TestWithSetupStepAsFinalStepLinter
|
|
108
|
+
|
|
109
|
+
### Changed
|
|
110
|
+
- Improved some of the documentation and linting messages so that it is more clear what the problem is.
|
|
111
|
+
|
|
112
|
+
## [0.9.0] - 2019-09-11
|
|
113
|
+
|
|
114
|
+
### Added
|
|
115
|
+
- Linters can now be temporarily enabled/disabled within arbitrary portions of a feature file, in order to allow for exceptions to the otherwise blanket set of linting rules.
|
|
116
|
+
|
|
117
|
+
## [0.8.0] - 2019-09-07
|
|
118
|
+
|
|
119
|
+
### Changed
|
|
120
|
+
- The exit codes used by the CLI have been changed in order to better facilitate taking additional actions based on them.
|
|
121
|
+
- 0 - No linting problems found
|
|
122
|
+
- 1 - Linting problems found
|
|
123
|
+
- 2 - Some other problem (e.g. incorrect CLI usage)
|
|
124
|
+
|
|
125
|
+
## [0.7.0] - 2019-07-12
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
- Linters can now be configured en masse instead of having to configure the same property for all of them individually.
|
|
129
|
+
|
|
130
|
+
- New linters
|
|
131
|
+
- ElementWithTooManyTagsLinter
|
|
132
|
+
- FeatureWithoutNameLinter
|
|
133
|
+
- TestWithNoActionStepLinter
|
|
134
|
+
- TestWithNoNameLinter
|
|
135
|
+
- TestWithNoVerificationStepLinter
|
|
136
|
+
|
|
137
|
+
## [0.6.0] - 2019-06-25
|
|
138
|
+
|
|
139
|
+
### Added
|
|
140
|
+
- File paths can now be provided for linting without the user first having to turn them into models themselves.
|
|
141
|
+
- Option flags have been added to the command line interface. This will allow more flexibility when running from the command line and thereby reduce the need for writing a Ruby script for even basic usages of the gem.
|
|
142
|
+
|
|
143
|
+
### Changed
|
|
144
|
+
- Linting is now done using a collection of model trees instead of taking only a single model tree.
|
|
145
|
+
|
|
146
|
+
### Fixed
|
|
147
|
+
- Fixed a bug in the 'pretty' formatter that was causing problems to be ordered by line number instead of being ordered by file (and then by line number within those files).
|
|
148
|
+
- Added a missing `require` statement that is needed if no other code in the runtime environment has loaded the needed library already.
|
|
149
|
+
- Fixed a bug where enabling/disabling a linter would trigger additional configuration of the linter, even for linters that could not be configured.
|
|
150
|
+
|
|
151
|
+
## [0.5.0] - 2019-05-25
|
|
152
|
+
|
|
153
|
+
### Added
|
|
154
|
+
- New linters
|
|
155
|
+
- BackgroundDoesMoreThanSetupLinter
|
|
156
|
+
- FeatureWithoutDescriptionLinter
|
|
157
|
+
- SingleTestBackgroundLinter
|
|
158
|
+
- StepWithEndPeriodLinter
|
|
159
|
+
- StepWithTooManyCharactersLinter
|
|
160
|
+
|
|
161
|
+
## [0.4.0] - 2019-05-11
|
|
162
|
+
|
|
163
|
+
### Added
|
|
164
|
+
- A base linter class has been added that can be used to create custom linters more easily by providing common boilerplate code that every linter would need.
|
|
165
|
+
|
|
166
|
+
### Changed
|
|
167
|
+
- Linters now return only a single problem instead of returning a collection of problems.
|
|
168
|
+
|
|
169
|
+
## [0.3.1] - 2019-04-13
|
|
170
|
+
|
|
171
|
+
### Added
|
|
172
|
+
- Now declaring required Ruby version. It's always been 2.x but now the gem actually says it officially.
|
|
173
|
+
|
|
174
|
+
## [0.3.0] - 2019-04-07
|
|
175
|
+
|
|
176
|
+
### Added
|
|
177
|
+
- Linter configuration: linters can now be configured (turned on/off, conditions changed, etc.) instead of having to always use the default settings
|
|
178
|
+
|
|
179
|
+
## [0.2.0] - 2019-03-19
|
|
180
|
+
|
|
181
|
+
### Added
|
|
182
|
+
- New linters
|
|
183
|
+
- ExampleWithoutNameLinter
|
|
184
|
+
- OutlineWithSingleExampleRowLinter
|
|
185
|
+
- TestWithTooManyStepsLinter
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
## [0.1.0] - 2019-02-10
|
|
189
|
+
|
|
190
|
+
### Added
|
|
191
|
+
- Custom linters, formatters, and command line usability
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
[Unreleased]: https://github.com/enkessler/cuke_linter/compare/v1.4.0...HEAD
|
|
195
|
+
[1.4.0]: https://github.com/enkessler/cuke_linter/compare/v1.3.0...v1.4.0
|
|
196
|
+
[1.3.0]: https://github.com/enkessler/cuke_linter/compare/v1.2.1...v1.3.0
|
|
197
|
+
[1.2.1]: https://github.com/enkessler/cuke_linter/compare/v1.2.0...v1.2.1
|
|
198
|
+
[1.2.0]: https://github.com/enkessler/cuke_linter/compare/v1.1.0...v1.2.0
|
|
199
|
+
[1.1.0]: https://github.com/enkessler/cuke_linter/compare/v1.0.1...v1.1.0
|
|
200
|
+
[1.0.1]: https://github.com/enkessler/cuke_linter/compare/v1.0.0...v1.0.1
|
|
201
|
+
[1.0.0]: https://github.com/enkessler/cuke_linter/compare/v0.13.0...v1.0.0
|
|
202
|
+
[0.13.0]: https://github.com/enkessler/cuke_linter/compare/v0.12.1...v0.13.0
|
|
203
|
+
[0.12.1]: https://github.com/enkessler/cuke_linter/compare/v0.12.0...v0.12.1
|
|
204
|
+
[0.12.0]: https://github.com/enkessler/cuke_linter/compare/v0.11.1...v0.12.0
|
|
205
|
+
[0.11.1]: https://github.com/enkessler/cuke_linter/compare/v0.11.0...v0.11.1
|
|
206
|
+
[0.11.0]: https://github.com/enkessler/cuke_linter/compare/v0.10.0...v0.11.0
|
|
207
|
+
[0.10.0]: https://github.com/enkessler/cuke_linter/compare/v0.9.0...v0.10.0
|
|
208
|
+
[0.9.0]: https://github.com/enkessler/cuke_linter/compare/v0.8.0...v0.9.0
|
|
209
|
+
[0.8.0]: https://github.com/enkessler/cuke_linter/compare/v0.7.0...v0.8.0
|
|
210
|
+
[0.7.0]: https://github.com/enkessler/cuke_linter/compare/v0.6.0...v0.7.0
|
|
211
|
+
[0.6.0]: https://github.com/enkessler/cuke_linter/compare/v0.5.0...v0.6.0
|
|
212
|
+
[0.5.0]: https://github.com/enkessler/cuke_linter/compare/v0.4.0...v0.5.0
|
|
213
|
+
[0.4.0]: https://github.com/enkessler/cuke_linter/compare/v0.3.1...v0.4.0
|
|
214
|
+
[0.3.1]: https://github.com/enkessler/cuke_linter/compare/v0.3.0...v0.3.1
|
|
215
|
+
[0.3.0]: https://github.com/enkessler/cuke_linter/compare/v0.2.0...v0.3.0
|
|
216
|
+
[0.2.0]: https://github.com/enkessler/cuke_linter/compare/v0.1.0...v0.2.0
|
|
217
|
+
[0.1.0]: https://github.com/enkessler/cuke_linter/compare/2bbd3f29f4eb45b6e9ea7d47c5bb47182bf4fde7...v0.1.0
|
data/LICENSE.txt
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2018-
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018-2026 Eric Kessler, et al
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|