snaky_hash 2.0.1 → 2.0.7
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 +177 -8
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +268 -13
- data/FUNDING.md +70 -0
- data/LICENSE.md +10 -0
- data/{LICENSE.txt → MIT.md} +1 -1
- data/README.md +628 -21
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +11 -14
- data/certs/pboling.pem +27 -0
- data/lib/snaky_hash/extensions.rb +57 -0
- data/lib/snaky_hash/serializer.rb +220 -0
- data/lib/snaky_hash/snake.rb +97 -47
- data/lib/snaky_hash/string_keyed.rb +9 -1
- data/lib/snaky_hash/symbol_keyed.rb +9 -1
- data/lib/snaky_hash/version.rb +2 -1
- data/lib/snaky_hash.rb +25 -1
- data/sig/snaky_hash/version.rbs +6 -0
- data/sig/snaky_hash.rbs +3 -0
- data.tar.gz.sig +0 -0
- metadata +236 -60
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d7ba970e956310051542f6433aeca0bc5c98ee6bc2a3e85ed71c5b10ddd2330
|
|
4
|
+
data.tar.gz: d26b882458ccc1860b98bebb9391f917c245812fbda4eee3e2941d2f487a8be9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6abac6e9dca6aae24b6362f4b2b0be36ded0c11f628911338ee21b5d8d962cf6ff7603b2dd586fb1f64c2f11dee34dd2a5f2074f1cbc5fafae9f859829ec3a47
|
|
7
|
+
data.tar.gz: f241d80a2a0ef0970cdfd37a522ac6e24bce5d3ced1167df919d1c705e9fd73fb7fcace1df2ca51bbeb39bdb5a80d67504e7e4919ff39617936dad73c54d1bb9
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,48 +1,217 @@
|
|
|
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
|
|
5
|
-
and this project adheres to [Semantic Versioning
|
|
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
|
|
|
13
|
-
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [2.0.7] - 2026-07-14
|
|
34
|
+
|
|
35
|
+
- TAG: [v2.0.7][2.0.7t]
|
|
36
|
+
- COVERAGE: 100.00% -- 133/133 lines in 7 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 38/38 branches in 7 files
|
|
38
|
+
- 92.86% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Added support for JRuby 10.1 and TruffleRuby 34.0.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Retemplated generated project metadata, support documentation, CI workflows,
|
|
47
|
+
binstubs, and development dependency floors with `kettle-jem` v7.0.0.
|
|
48
|
+
|
|
49
|
+
### Fixed
|
|
50
|
+
|
|
51
|
+
- Corrected RubyGems homepage metadata to point at the gem documentation site.
|
|
52
|
+
- Corrected persisted Open Collective and repository topology metadata used by
|
|
53
|
+
future template runs.
|
|
54
|
+
|
|
55
|
+
- Package configured license files in gem release file lists.
|
|
56
|
+
|
|
57
|
+
- Removed stale local-path `version_gem` state from the main lockfile.
|
|
58
|
+
|
|
59
|
+
## [2.0.6] - 2026-06-11
|
|
60
|
+
|
|
61
|
+
- TAG: [v2.0.6][2.0.6t]
|
|
62
|
+
- COVERAGE: 100.00% -- 133/133 lines in 7 files
|
|
63
|
+
- BRANCH COVERAGE: 100.00% -- 38/38 branches in 7 files
|
|
64
|
+
- 92.86% documented
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
|
|
68
|
+
- Restored `docs/CNAME` so the generated documentation site keeps its custom domain.
|
|
69
|
+
- Removed stale legacy CI workflows and duplicate extracted-stdlib gem
|
|
70
|
+
declarations from generated Appraisal gemfiles.
|
|
71
|
+
|
|
72
|
+
## [2.0.5] - 2026-06-07
|
|
73
|
+
|
|
74
|
+
- TAG: [v2.0.5][2.0.5t]
|
|
75
|
+
- COVERAGE: 100.00% -- 133/133 lines in 7 files
|
|
76
|
+
- BRANCH COVERAGE: 100.00% -- 38/38 branches in 7 files
|
|
77
|
+
- 92.86% documented
|
|
78
|
+
|
|
79
|
+
### Changed
|
|
80
|
+
|
|
81
|
+
- Refreshed project scaffolding with the current `kettle-jem` template, including
|
|
82
|
+
updated CI workflows, modular gemfiles, and development tooling floors.
|
|
83
|
+
|
|
84
|
+
## [2.0.4] - 2026-05-16
|
|
85
|
+
|
|
86
|
+
- TAG: [v2.0.4][2.0.4t]
|
|
87
|
+
- COVERAGE: 100.00% -- 133/133 lines in 7 files
|
|
88
|
+
- BRANCH COVERAGE: 100.00% -- 38/38 branches in 7 files
|
|
89
|
+
- 100.00% documented
|
|
90
|
+
|
|
91
|
+
### Added
|
|
92
|
+
|
|
93
|
+
- Incident Response Plan in IRP.md
|
|
94
|
+
- SnakyHash::VERSION (Traditional Constant Location)
|
|
95
|
+
- kettle-dev & kettle-test dev harnesses
|
|
96
|
+
|
|
97
|
+
### Changed
|
|
98
|
+
|
|
99
|
+
- Contributor Conenant updated to version 2.1
|
|
100
|
+
|
|
101
|
+
### Fixed
|
|
102
|
+
|
|
103
|
+
- Specs
|
|
104
|
+
|
|
105
|
+
## [2.0.3] - 2025-05-23
|
|
106
|
+
|
|
107
|
+
- TAG: [v2.0.3][2.0.3t]
|
|
108
|
+
- COVERAGE: 100.00% -- 132/132 lines in 7 files
|
|
109
|
+
- BRANCH COVERAGE: 100.00% -- 38/38 branches in 7 files
|
|
110
|
+
- 100.00% documented
|
|
111
|
+
|
|
112
|
+
### Added
|
|
113
|
+
|
|
114
|
+
- `#dump` instance method injected by `extend SnakyHash::Serializer` (@pboling)
|
|
115
|
+
- `dump_hash_extensions` - new feature, analogous to `load_hash_extensions` (@pboling)
|
|
116
|
+
- `dump_value_extensions` - alternate name for `dump_extensions` (@pboling)
|
|
117
|
+
- `load_value_extensions` - alternate name for `load_extensions` (@pboling)
|
|
118
|
+
- Clarifying documentation (@pboling)
|
|
119
|
+
|
|
120
|
+
### Fixed
|
|
121
|
+
|
|
122
|
+
- [gh4](https://github.com/oauth-xx/snaky_hash/pull/4) - Serializer extensions dump and load empty values properly (@pboling)
|
|
123
|
+
- Fixed `dump_extensions`, `load_extensions`, `load_hash_extensions`
|
|
124
|
+
- Intended usage is primarily JSON, and oauth2 gem
|
|
125
|
+
- OAuth2 spec can have legitimately empty values (e.g. scopes could be empty)
|
|
126
|
+
- Previous logic was inherited from design decisions made by `serialized_hashie` gem; doesn't apply here
|
|
127
|
+
|
|
128
|
+
## [2.0.2] - 2025-05-21
|
|
129
|
+
|
|
130
|
+
- TAG: [v2.0.2][2.0.2t]
|
|
131
|
+
- COVERAGE: 100.00% -- 119/119 lines in 7 files
|
|
132
|
+
- BRANCH COVERAGE: 100.00% -- 35/35 branches in 7 files
|
|
133
|
+
- 100.00% documented
|
|
134
|
+
|
|
135
|
+
### Added
|
|
136
|
+
|
|
137
|
+
- Gem is signed by 20-year cert (@pboling)
|
|
138
|
+
- Expires 2045-04-29
|
|
139
|
+
- Gemspec metadata updates (@pboling)
|
|
140
|
+
- Documentation updates (@pboling)
|
|
141
|
+
- CI covering all code, and all key versions of runtime dependencies (@pboling)
|
|
142
|
+
- Including Hashie v0, v1, v2, v3, v4, v5, and HEAD
|
|
143
|
+
- [gh2](https://github.com/oauth-xx/snaky_hash/pull/2) - Serializer option (@pboling)
|
|
144
|
+
- [gh3](https://github.com/oauth-xx/snaky_hash/pull/3) - Serializer Extensions (@pboling)
|
|
145
|
+
- Documentation site at [snaky-hash.galtzo.com](https://snaky-hash.galtzo.com) (@pboling)
|
|
146
|
+
- 100% documented! (@pboling)
|
|
147
|
+
|
|
148
|
+
## [2.0.1] - 2022-09-23
|
|
149
|
+
|
|
150
|
+
- TAG: [v2.0.1][2.0.1t]
|
|
151
|
+
|
|
14
152
|
### Added
|
|
153
|
+
|
|
15
154
|
- Certificate for signing gem releases (@pboling)
|
|
16
155
|
- Gemspec metadata (@pboling)
|
|
17
156
|
- funding_uri
|
|
18
157
|
- mailing_list_uri
|
|
19
158
|
- Checksums for released gems (@pboling)
|
|
159
|
+
|
|
20
160
|
### Changed
|
|
161
|
+
|
|
21
162
|
- Gem releases are now cryptographically signed (@pboling)
|
|
22
163
|
|
|
23
|
-
## [2.0.0] - 2022-08-29
|
|
164
|
+
## [2.0.0] - 2022-08-29
|
|
165
|
+
|
|
166
|
+
- TAG: [v2.0.0][2.0.0t]
|
|
167
|
+
|
|
24
168
|
### Changed
|
|
169
|
+
|
|
25
170
|
- **BREAKING**: `SnakeHash::Snake` is now a mixin, now with support for symbol or string keys
|
|
26
171
|
```ruby
|
|
27
172
|
class MySnakedHash < Hashie::Mash
|
|
28
173
|
include SnakyHash::Snake.new(key_type: :string) # or :symbol
|
|
29
174
|
end
|
|
30
175
|
```
|
|
176
|
+
|
|
31
177
|
### Added
|
|
178
|
+
|
|
32
179
|
- `SnakyHash::StringKeyed`: a Hashie::Mash class with snake-cased String keys
|
|
33
180
|
- `SnakyHash::SymbolKeyed`: a Hashie::Mash class with snake-cased Symbol keys
|
|
34
181
|
|
|
35
|
-
## [1.0.1] - 2022-08-26
|
|
182
|
+
## [1.0.1] - 2022-08-26
|
|
183
|
+
|
|
184
|
+
- TAG: [v1.0.1][1.0.1t]
|
|
185
|
+
|
|
36
186
|
### Added
|
|
187
|
+
|
|
37
188
|
- Missing LICENSE.txt file to release
|
|
189
|
+
|
|
38
190
|
### Removed
|
|
191
|
+
|
|
39
192
|
- Accidentally added bundler dependency (vestige of transpec process) is now removed
|
|
40
193
|
|
|
41
|
-
## [1.0.0] - 2022-08-26
|
|
194
|
+
## [1.0.0] - 2022-08-26
|
|
195
|
+
|
|
196
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
197
|
+
|
|
42
198
|
### Added
|
|
199
|
+
|
|
43
200
|
- Initial release
|
|
44
201
|
|
|
45
|
-
[Unreleased]: https://
|
|
202
|
+
[Unreleased]: https://github.com/ruby-oauth/snaky_hash/compare/v2.0.7...HEAD
|
|
203
|
+
[2.0.7]: https://github.com/ruby-oauth/snaky_hash/compare/v2.0.6...v2.0.7
|
|
204
|
+
[2.0.7t]: https://github.com/ruby-oauth/snaky_hash/releases/tag/v2.0.7
|
|
205
|
+
[2.0.6]: https://github.com/ruby-oauth/snaky_hash/compare/v2.0.5...v2.0.6
|
|
206
|
+
[2.0.6t]: https://github.com/ruby-oauth/snaky_hash/releases/tag/v2.0.6
|
|
207
|
+
[2.0.5]: https://github.com/ruby-oauth/snaky_hash/compare/v2.0.4...v2.0.5
|
|
208
|
+
[2.0.5t]: https://github.com/ruby-oauth/snaky_hash/releases/tag/v2.0.5
|
|
209
|
+
[2.0.4]: https://github.com/ruby-oauth/snaky_hash/compare/v2.0.3...v2.0.4
|
|
210
|
+
[2.0.4t]: https://github.com/ruby-oauth/snaky_hash/releases/tag/v2.0.4
|
|
211
|
+
[2.0.3]: https://gitlab.com/oauth-xx/snaky_hash/-/compare/v2.0.2...v2.0.3
|
|
212
|
+
[2.0.3t]: https://gitlab.com/oauth-xx/snaky_hash/-/releases/tag/v2.0.3
|
|
213
|
+
[2.0.2]: https://gitlab.com/oauth-xx/snaky_hash/-/compare/v2.0.1...v2.0.2
|
|
214
|
+
[2.0.2t]: https://gitlab.com/oauth-xx/snaky_hash/-/releases/tag/v2.0.2
|
|
46
215
|
[2.0.1]: https://gitlab.com/oauth-xx/snaky_hash/-/compare/v2.0.0...v2.0.1
|
|
47
216
|
[2.0.1t]: https://gitlab.com/oauth-xx/snaky_hash/-/releases/tag/v2.0.1
|
|
48
217
|
[2.0.0]: https://gitlab.com/oauth-xx/snaky_hash/-/compare/v1.0.1...v2.0.0
|
data/CITATION.cff
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: "snaky_hash"
|
|
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/ruby-oauth/snaky_hash'
|
|
16
|
+
description: "snaky_hash"
|
|
17
|
+
repository-code: 'https://github.com/ruby-oauth/snaky_hash'
|
|
18
|
+
abstract: >-
|
|
19
|
+
snaky_hash
|
|
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
|