rubocop-ruby3_0 3.0.2 → 3.0.5
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +129 -7
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +263 -27
- data/FUNDING.md +70 -0
- data/LICENSE.md +10 -0
- data/README.md +423 -331
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +3 -4
- data/certs/pboling.pem +27 -0
- data/lib/rubocop/ruby3_0/version.rb +2 -1
- data/lib/rubocop/ruby3_0.rb +2 -2
- data/sig/rubocop/ruby3_0/version.rbs +8 -0
- data/sig/rubocop/ruby3_0.rbs +0 -1
- data.tar.gz.sig +0 -0
- metadata +232 -57
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b224a710533ad90242d930198729054a88b569ceb975f9b43c58555f6877bc71
|
|
4
|
+
data.tar.gz: ffd0f9f778a6aa2682c6d96f161ee1bef7cec51efdd486af44cfb80d646206db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b80334e9e694a5ac41f05e44eb3f80f3a36e4455e07e919616ff4e038202fc3cdf5de0759a4ae6eabc61b55819fa7ff15d753da5f9d30772507aa6edb50725ac
|
|
7
|
+
data.tar.gz: 732a5eac7b3b97f08edb18faee8103a3e7c1d1d3969481f84ac1e770d21ad023a288ae910c51c3a141f270af31d7db15d3545b386b22f370467fac2a60e6b68d
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,73 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
2
5
|
All notable changes to this project will be documented in this file.
|
|
3
6
|
|
|
4
|
-
The format is based on [Keep a Changelog]
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
6
18
|
|
|
7
19
|
## [Unreleased]
|
|
20
|
+
|
|
8
21
|
### Added
|
|
22
|
+
|
|
9
23
|
### Changed
|
|
10
|
-
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
11
27
|
### Removed
|
|
12
28
|
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [3.0.5] - 2026-06-28
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.0.5][3.0.5t]
|
|
36
|
+
- COVERAGE: 55.17% -- 16/29 lines in 5 files
|
|
37
|
+
- BRANCH COVERAGE: 0.00% -- 0/2 branches in 5 files
|
|
38
|
+
- 42.86% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Restored the gemspec `spec.files` declaration so packaged gems include the
|
|
43
|
+
intended public files and configuration payload.
|
|
44
|
+
|
|
45
|
+
## [3.0.4] - 2026-06-25
|
|
46
|
+
|
|
47
|
+
- TAG: [v3.0.4][3.0.4t]
|
|
48
|
+
- COVERAGE: 55.17% -- 16/29 lines in 5 files
|
|
49
|
+
- BRANCH COVERAGE: 0.00% -- 0/2 branches in 5 files
|
|
50
|
+
- 42.86% documented
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
55
|
+
|
|
56
|
+
### Changed
|
|
57
|
+
|
|
58
|
+
- Retemplated project metadata and CI/development automation with `kettle-jem` v7.0.0.
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
|
|
62
|
+
- Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
|
|
63
|
+
- Corrected misspelled contact metadata to use `galtzo.com`.
|
|
64
|
+
|
|
13
65
|
## [3.0.2] 2026-06-01
|
|
66
|
+
|
|
14
67
|
### Added
|
|
68
|
+
|
|
15
69
|
### Changed
|
|
70
|
+
|
|
16
71
|
- Corrected gem metadata to declare the Ruby 3.2 runtime floor that has been implicit since the last major release.
|
|
17
72
|
- Updated dependency floors:
|
|
18
73
|
- `version_gem` to `~> 1.1`, `>= 1.1.9`.
|
|
@@ -23,42 +78,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
78
|
- `standard-rubocop-lts` to `~> 2.0`, `>= 2.0.3`.
|
|
24
79
|
- Release, lint, documentation, and test dependencies to their latest compatible floors.
|
|
25
80
|
- Updated direct dependency floors and moved `rubocop-md` to plugin loading.
|
|
81
|
+
|
|
26
82
|
### Fixed
|
|
83
|
+
|
|
27
84
|
### Removed
|
|
28
85
|
|
|
29
86
|
## [3.0.1] 2026-06-01
|
|
87
|
+
|
|
30
88
|
### Added
|
|
89
|
+
|
|
31
90
|
### Changed
|
|
91
|
+
|
|
32
92
|
- Load `rubocop-thread_safety` through RuboCop's plugin API.
|
|
93
|
+
|
|
33
94
|
### Fixed
|
|
95
|
+
|
|
34
96
|
### Removed
|
|
35
97
|
|
|
36
98
|
## [3.0.0] 2026-05-30
|
|
99
|
+
|
|
37
100
|
### Added
|
|
101
|
+
|
|
38
102
|
### Changed
|
|
103
|
+
|
|
39
104
|
- Tidelift for Reporting Security vulnerabilities
|
|
40
105
|
- Updated `standard-rubocop-lts` dependency to the `2.x` series.
|
|
106
|
+
|
|
41
107
|
### Fixed
|
|
108
|
+
|
|
42
109
|
### Removed
|
|
110
|
+
|
|
43
111
|
- rubocop-shopify because they boiled the ocean
|
|
44
112
|
- turning cops off isn't copacetic with the goal of strict compatibility
|
|
45
113
|
|
|
46
114
|
## [2.0.6] 2023-06-13
|
|
115
|
+
|
|
47
116
|
### Changed
|
|
117
|
+
|
|
48
118
|
- Moved development dependencies out of gemspec
|
|
49
119
|
- rubocop to 1.52.1
|
|
50
120
|
- rubocop-shopify to 2.14
|
|
51
121
|
- standard-custom to 1.0.1
|
|
52
122
|
- standard-rubocop-lts to 1.0.7
|
|
53
123
|
- version_gem to 1.1.3
|
|
124
|
+
|
|
54
125
|
### Fixed
|
|
126
|
+
|
|
55
127
|
- rubocop/rails.yml config
|
|
56
128
|
- betterlint integration
|
|
57
129
|
- standard-rails integration
|
|
58
130
|
- bin/pry now pre-loads this library
|
|
59
131
|
|
|
60
132
|
## [2.0.5] 2023-06-05
|
|
133
|
+
|
|
61
134
|
### Added
|
|
135
|
+
|
|
62
136
|
- Dependencies
|
|
63
137
|
- yard-junk
|
|
64
138
|
- redcarpet
|
|
@@ -68,24 +142,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
68
142
|
- Some rules should ignore specs/tests
|
|
69
143
|
- Style/MethodCallWithArgsParentheses
|
|
70
144
|
- Style/ClassAndModuleChildren
|
|
145
|
+
|
|
71
146
|
### Fixed
|
|
147
|
+
|
|
72
148
|
- `yard` documentation task
|
|
149
|
+
|
|
73
150
|
### Changed
|
|
151
|
+
|
|
74
152
|
- Added Include to inherit_mode: merge
|
|
75
153
|
- Updated dependency on standard-rubocop-lts
|
|
76
154
|
|
|
77
155
|
## [2.0.4] 2023-05-22
|
|
156
|
+
|
|
78
157
|
### Fixed
|
|
158
|
+
|
|
79
159
|
- install_tasks and Railtie loading of rake tasks
|
|
160
|
+
|
|
80
161
|
### Changed
|
|
162
|
+
|
|
81
163
|
- tasks.rake => tasks.rb
|
|
82
164
|
|
|
83
165
|
## [2.0.3] 2023-05-21
|
|
166
|
+
|
|
84
167
|
### Fixed
|
|
168
|
+
|
|
85
169
|
- Ship rake tasks in gem package
|
|
86
170
|
|
|
87
171
|
## [2.0.2] 2023-05-19
|
|
172
|
+
|
|
88
173
|
### Added
|
|
174
|
+
|
|
89
175
|
- Configs added for:
|
|
90
176
|
- standard-performance
|
|
91
177
|
- standard-custom
|
|
@@ -94,11 +180,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
94
180
|
- betterlint
|
|
95
181
|
- standard-rails
|
|
96
182
|
- version_gem
|
|
183
|
+
|
|
97
184
|
### Fixed
|
|
185
|
+
|
|
98
186
|
- Fix rake_tasks hook on Railtie
|
|
99
187
|
|
|
100
188
|
## [2.0.0] 2023-05-09 [YANKED]
|
|
189
|
+
|
|
101
190
|
### Changed
|
|
191
|
+
|
|
102
192
|
- New/Better configs for:
|
|
103
193
|
- rubocop
|
|
104
194
|
- rubocop-gradual
|
|
@@ -114,65 +204,100 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
114
204
|
- rubocop-packaging
|
|
115
205
|
|
|
116
206
|
## [1.1.2] 2023-03-17
|
|
207
|
+
|
|
117
208
|
### Added
|
|
209
|
+
|
|
118
210
|
* GitLab CI config
|
|
211
|
+
|
|
119
212
|
### Changed
|
|
213
|
+
|
|
120
214
|
* Upgraded to RuboCop v1.48.1
|
|
121
215
|
* Compatible with rubocop-packaging ~> 0.5.2
|
|
122
216
|
* Improved development documentation
|
|
123
217
|
* Improved documentation on SemVer adherence
|
|
218
|
+
|
|
124
219
|
### Fixed
|
|
220
|
+
|
|
125
221
|
* Stop defining global variable in version.rb
|
|
126
222
|
|
|
127
223
|
## [1.1.1] 2022-12-20
|
|
224
|
+
|
|
128
225
|
### Fixed
|
|
226
|
+
|
|
129
227
|
* Do not require version.rb from gemspec so code coverage is accurate from both `rake` and `rspec`
|
|
130
228
|
* Typos in CHANGELOG & Documentation
|
|
229
|
+
|
|
131
230
|
### Changed
|
|
231
|
+
|
|
132
232
|
* Minimum Code Coverage == 100%
|
|
133
233
|
|
|
134
234
|
## [1.1.0] 2022-12-18
|
|
235
|
+
|
|
135
236
|
### Changed
|
|
237
|
+
|
|
136
238
|
* Update to rubocop `~> 1.40.0`
|
|
239
|
+
|
|
137
240
|
### Added
|
|
241
|
+
|
|
138
242
|
* Gem release ships with `SHA512` and `SHA256` checksums
|
|
139
243
|
* Release is securely signed by author
|
|
140
244
|
* Document release process in `CONTRIBUTING.md`
|
|
141
245
|
* Documentation of why this gem exists
|
|
142
246
|
|
|
143
247
|
## [1.0.6] 2022-06-08
|
|
248
|
+
|
|
144
249
|
### Changed
|
|
250
|
+
|
|
145
251
|
* Update to rubocop `~> 1.30.1`
|
|
146
252
|
* Removed test_files from gemspec
|
|
147
253
|
* Add binstubs for bundle, rake, rspec, and rubocop
|
|
148
254
|
|
|
149
255
|
## [1.0.5] 2022-06-05
|
|
256
|
+
|
|
150
257
|
### Changed
|
|
258
|
+
|
|
151
259
|
* Update to rubocop `~> 1.30.0`
|
|
152
260
|
|
|
153
261
|
## [1.0.4] 2022-05-23
|
|
262
|
+
|
|
154
263
|
### Changed
|
|
264
|
+
|
|
155
265
|
* Update to rubocop `~> 1.29.1`
|
|
156
266
|
|
|
157
267
|
## [1.0.3] 2022-05-23
|
|
268
|
+
|
|
158
269
|
### Added
|
|
270
|
+
|
|
159
271
|
* Rubocop => RuboCop typo repair
|
|
160
272
|
* Ruby Version Support Matrix
|
|
161
273
|
* Improved documentation
|
|
162
274
|
|
|
163
275
|
## [1.0.2] 2022-05-03
|
|
276
|
+
|
|
164
277
|
### Fixed
|
|
278
|
+
|
|
165
279
|
* Added missing rubocop.yml for inherit_gem directive
|
|
166
280
|
|
|
167
281
|
## [1.0.1] 2022-05-02
|
|
282
|
+
|
|
168
283
|
### Added
|
|
284
|
+
|
|
169
285
|
* Documentation
|
|
170
286
|
|
|
171
287
|
## [1.0.0] 2022-05-01
|
|
288
|
+
|
|
172
289
|
### Added
|
|
290
|
+
|
|
173
291
|
* Initial release
|
|
174
292
|
|
|
175
|
-
[Unreleased]: https://
|
|
293
|
+
[Unreleased]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v3.0.5...HEAD
|
|
294
|
+
[3.0.5]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v3.0.4...v3.0.5
|
|
295
|
+
[3.0.5t]: https://github.com/rubocop-lts/rubocop-ruby3_0/releases/tag/v3.0.5
|
|
296
|
+
[3.0.4]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v3.0.2...v3.0.4
|
|
297
|
+
[3.0.4t]: https://github.com/rubocop-lts/rubocop-ruby3_0/releases/tag/v3.0.4
|
|
298
|
+
[3.0.2]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v3.0.1...v3.0.2
|
|
299
|
+
[3.0.1]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v3.0.0...v3.0.1
|
|
300
|
+
[3.0.0]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v2.0.6...v3.0.0
|
|
176
301
|
[2.0.6]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v2.0.5...v2.0.6
|
|
177
302
|
[2.0.5]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v2.0.4...v2.0.5
|
|
178
303
|
[2.0.4]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v2.0.3...v2.0.4
|
|
@@ -189,6 +314,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
189
314
|
[1.0.2]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v1.0.1...v1.0.2
|
|
190
315
|
[1.0.1]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/v1.0.0...v1.0.1
|
|
191
316
|
[1.0.0]: https://github.com/rubocop-lts/rubocop-ruby3_0/compare/251b24f1147b3a42a16465663be1f08c93e8affc...v1.0.0
|
|
192
|
-
[3.0.1]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v3.0.0...v3.0.1
|
|
193
|
-
[3.0.0]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v2.0.6...v3.0.0
|
|
194
|
-
[3.0.2]: https://gitlab.com/rubocop-lts/rubocop-ruby3_0/-/compare/v3.0.1...v3.0.2
|
data/CITATION.cff
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: "rubocop-ruby3_0"
|
|
3
|
+
message: >-
|
|
4
|
+
If you use this work and you want to cite it,
|
|
5
|
+
then you can use the metadata from this file.
|
|
6
|
+
type: software
|
|
7
|
+
authors:
|
|
8
|
+
- given-names: "Peter H."
|
|
9
|
+
family-names: "Boling"
|
|
10
|
+
email: "floss@galtzo.com"
|
|
11
|
+
affiliation: "galtzo.com"
|
|
12
|
+
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
|
13
|
+
identifiers:
|
|
14
|
+
- type: url
|
|
15
|
+
value: 'https://github.com/rubocop-lts/rubocop-ruby3_0'
|
|
16
|
+
description: "rubocop-ruby3_0"
|
|
17
|
+
repository-code: 'https://github.com/rubocop-lts/rubocop-ruby3_0'
|
|
18
|
+
abstract: >-
|
|
19
|
+
rubocop-ruby3_0
|
|
20
|
+
license: See license file
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -2,83 +2,133 @@
|
|
|
2
2
|
|
|
3
3
|
## Our Pledge
|
|
4
4
|
|
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
+
identity and orientation.
|
|
6
11
|
|
|
7
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
8
14
|
|
|
9
15
|
## Our Standards
|
|
10
16
|
|
|
11
|
-
Examples of behavior that contributes to a positive environment for our
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
12
19
|
|
|
13
20
|
* Demonstrating empathy and kindness toward other people
|
|
14
21
|
* Being respectful of differing opinions, viewpoints, and experiences
|
|
15
22
|
* Giving and gracefully accepting constructive feedback
|
|
16
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
17
|
-
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
|
26
|
+
community
|
|
18
27
|
|
|
19
28
|
Examples of unacceptable behavior include:
|
|
20
29
|
|
|
21
|
-
* The use of sexualized language or imagery, and sexual attention or
|
|
22
|
-
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
|
31
|
+
any kind
|
|
23
32
|
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
24
33
|
* Public or private harassment
|
|
25
|
-
* Publishing others' private information, such as a physical or email
|
|
26
|
-
|
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
|
35
|
+
without their explicit permission
|
|
27
36
|
* Other conduct which could reasonably be considered inappropriate in a
|
|
28
37
|
professional setting
|
|
29
38
|
|
|
30
39
|
## Enforcement Responsibilities
|
|
31
40
|
|
|
32
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
33
45
|
|
|
34
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
35
50
|
|
|
36
51
|
## Scope
|
|
37
52
|
|
|
38
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official email address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
39
58
|
|
|
40
59
|
## Enforcement
|
|
41
60
|
|
|
42
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
[![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact].
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
43
65
|
|
|
44
|
-
All community leaders are obligated to respect the privacy and security of the
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
45
68
|
|
|
46
69
|
## Enforcement Guidelines
|
|
47
70
|
|
|
48
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
49
73
|
|
|
50
74
|
### 1. Correction
|
|
51
75
|
|
|
52
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
53
78
|
|
|
54
|
-
**Consequence**: A private, written warning from community leaders, providing
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
55
82
|
|
|
56
83
|
### 2. Warning
|
|
57
84
|
|
|
58
|
-
**Community Impact**: A violation through a single incident or series of
|
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
|
86
|
+
actions.
|
|
59
87
|
|
|
60
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
|
93
|
+
ban.
|
|
61
94
|
|
|
62
95
|
### 3. Temporary Ban
|
|
63
96
|
|
|
64
|
-
**Community Impact**: A serious violation of community standards, including
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
65
99
|
|
|
66
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
67
105
|
|
|
68
106
|
### 4. Permanent Ban
|
|
69
107
|
|
|
70
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
71
111
|
|
|
72
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
113
|
+
community.
|
|
73
114
|
|
|
74
115
|
## Attribution
|
|
75
116
|
|
|
76
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
77
|
-
available at
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.1, available at
|
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
78
120
|
|
|
79
|
-
Community Impact Guidelines were inspired by
|
|
80
|
-
|
|
81
|
-
[homepage]: https://www.contributor-covenant.org
|
|
121
|
+
Community Impact Guidelines were inspired by
|
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
82
123
|
|
|
83
124
|
For answers to common questions about this code of conduct, see the FAQ at
|
|
84
|
-
https://www.contributor-covenant.org/faq. Translations are available at
|
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
|
127
|
+
|
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
|
133
|
+
[🚂maint-contact]: http://www.railsbling.com/contact
|
|
134
|
+
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|