dotenv-merge 1.0.2 → 7.1.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
- checksums.yaml.gz.sig +0 -0
- data/LICENSE.md +13 -0
- data/README.md +101 -515
- data/lib/dotenv/merge/backend.rb +70 -0
- data/lib/dotenv/merge/comment_tracker.rb +112 -0
- data/lib/dotenv/merge/debug_logger.rb +2 -2
- data/lib/dotenv/merge/env_line.rb +10 -14
- data/lib/dotenv/merge/file_analysis.rb +135 -24
- data/lib/dotenv/merge/freeze_node.rb +1 -1
- data/lib/dotenv/merge/merge_result.rb +6 -6
- data/lib/dotenv/merge/smart_merger.rb +360 -137
- data/lib/dotenv/merge/version.rb +5 -4
- data/lib/dotenv/merge.rb +22 -18
- data/lib/dotenv-merge.rb +9 -1
- data/sig/dotenv/merge.rbs +3 -207
- data.tar.gz.sig +0 -0
- metadata +114 -76
- metadata.gz.sig +0 -0
- data/CHANGELOG.md +0 -95
- data/CITATION.cff +0 -20
- data/CODE_OF_CONDUCT.md +0 -134
- data/CONTRIBUTING.md +0 -227
- data/FUNDING.md +0 -74
- data/LICENSE.txt +0 -21
- data/REEK +0 -0
- data/RUBOCOP.md +0 -71
- data/SECURITY.md +0 -21
- data/sig/dotenv/merge/env_line.rbs +0 -90
data/README.md
CHANGED
|
@@ -1,60 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
3
|
-
| RubyGems (the [GitHub org][rubygems-org], not the website) [suffered][draper-security] a [hostile takeover][ellen-takeover] in September 2025. |
|
|
4
|
-
| Ultimately [4 maintainers][simi-removed] were [hard removed][martin-removed] and a reason has been given for only 1 of those, while 2 others resigned in protest. |
|
|
5
|
-
| It is a [complicated story][draper-takeover] which is difficult to [parse quickly][draper-lies]. |
|
|
6
|
-
| Simply put - there was active policy for adding or removing maintainers/owners of [rubygems][rubygems-maint-policy] and [bundler][bundler-maint-policy], and those [policies were not followed][policy-fail]. |
|
|
7
|
-
| I'm adding notes like this to gems because I [don't condone theft][draper-theft] of repositories or gems from their rightful owners. |
|
|
8
|
-
| If a similar theft happened with my repos/gems, I'd hope some would stand up for me. |
|
|
9
|
-
| Disenfranchised former-maintainers have started [gem.coop][gem-coop]. |
|
|
10
|
-
| Once available I will publish there exclusively; unless RubyCentral makes amends with the community. |
|
|
11
|
-
| The ["Technology for Humans: Joel Draper"][reinteractive-podcast] podcast episode by [reinteractive][reinteractive] is the most cogent summary I'm aware of. |
|
|
12
|
-
| See [here][gem-naming], [here][gem-coop] and [here][martin-ann] for more info on what comes next. |
|
|
13
|
-
| What I'm doing: A (WIP) proposal for [bundler/gem scopes][gem-scopes], and a (WIP) proposal for a federated [gem server][gem-server]. |
|
|
14
|
-
|
|
15
|
-
[rubygems-org]: https://github.com/rubygems/
|
|
16
|
-
[draper-security]: https://joel.drapper.me/p/ruby-central-security-measures/
|
|
17
|
-
[draper-takeover]: https://joel.drapper.me/p/ruby-central-takeover/
|
|
18
|
-
[ellen-takeover]: https://pup-e.com/blog/goodbye-rubygems/
|
|
19
|
-
[simi-removed]: https://www.reddit.com/r/ruby/s/gOk42POCaV
|
|
20
|
-
[martin-removed]: https://bsky.app/profile/martinemde.com/post/3m3occezxxs2q
|
|
21
|
-
[draper-lies]: https://joel.drapper.me/p/ruby-central-fact-check/
|
|
22
|
-
[draper-theft]: https://joel.drapper.me/p/ruby-central/
|
|
23
|
-
[reinteractive]: https://reinteractive.com/ruby-on-rails
|
|
24
|
-
[gem-coop]: https://gem.coop
|
|
25
|
-
[gem-naming]: https://github.com/gem-coop/gem.coop/issues/12
|
|
26
|
-
[martin-ann]: https://martinemde.com/2025/10/05/announcing-gem-coop.html
|
|
27
|
-
[gem-scopes]: https://github.com/galtzo-floss/bundle-namespace
|
|
28
|
-
[gem-server]: https://github.com/galtzo-floss/gem-server
|
|
29
|
-
[reinteractive-podcast]: https://youtu.be/_H4qbtC5qzU?si=BvuBU90R2wAqD2E6
|
|
30
|
-
[bundler-maint-policy]: https://github.com/ruby/rubygems/blob/b1ab33a3d52310a84d16b193991af07f5a6a07c0/doc/bundler/playbooks/TEAM_CHANGES.md
|
|
31
|
-
[rubygems-maint-policy]: https://github.com/ruby/rubygems/blob/b1ab33a3d52310a84d16b193991af07f5a6a07c0/doc/rubygems/POLICIES.md?plain=1#L187-L196
|
|
32
|
-
[policy-fail]: https://www.reddit.com/r/ruby/comments/1ove9vp/rubycentral_hates_this_one_fact/
|
|
33
|
-
|
|
34
|
-
[![Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0][🖼️galtzo-i]][🖼️galtzo-discord] [![ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5][🖼️ruby-lang-i]][🖼️ruby-lang] [![kettle-rb Logo by Aboling0, CC BY-SA 4.0][🖼️kettle-rb-i]][🖼️kettle-rb]
|
|
35
|
-
|
|
36
|
-
[🖼️galtzo-i]: https://logos.galtzo.com/assets/images/galtzo-floss/avatar-192px.svg
|
|
37
|
-
[🖼️galtzo-discord]: https://discord.gg/3qme4XHNKN
|
|
38
|
-
[🖼️ruby-lang-i]: https://logos.galtzo.com/assets/images/ruby-lang/avatar-192px.svg
|
|
39
|
-
[🖼️ruby-lang]: https://www.ruby-lang.org/
|
|
40
|
-
[🖼️kettle-rb-i]: https://logos.galtzo.com/assets/images/kettle-rb/avatar-192px.svg
|
|
41
|
-
[🖼️kettle-rb]: https://github.com/kettle-rb
|
|
1
|
+
<a href="https://github.com/structuredmerge"><img alt="structuredmerge Logo by GitHub" src="https://github.com/structuredmerge.png?size=192" width="14%" align="right"/></a>
|
|
42
2
|
|
|
43
3
|
# ☯️ Dotenv::Merge
|
|
44
4
|
|
|
45
|
-
[![Version][👽versioni]][👽
|
|
5
|
+
[![Version][👽versioni]][👽version] [![Ruby Users Forum][✉️ruby-forum-top-img]][✉️ruby-forum] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: AGPL-3.0-only OR PolyForm-Small-Business-1.0.0][📄license-img]][📄license] [![Total downloads][👽dl-ranki]][👽dl-rank] [![CI Current][🚎11-c-wfi]][🚎11-c-wf]
|
|
46
6
|
|
|
47
|
-
`if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know][
|
|
7
|
+
`if ci_badges.map(&:color).detect { it != "green"}` ☝️ [let me know on Discord][✉️discord-invite] or [RubyForum][✉️ruby-forum], as I may have missed the notification.
|
|
48
8
|
|
|
49
|
-
|
|
9
|
+
---
|
|
50
10
|
|
|
51
11
|
`if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
|
|
52
12
|
|
|
53
|
-
[![
|
|
13
|
+
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
|
|
54
14
|
|
|
55
|
-
|
|
15
|
+
<details markdown="1">
|
|
16
|
+
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
17
|
+
|
|
18
|
+
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
19
|
+
|
|
20
|
+
</details>
|
|
21
|
+
|
|
22
|
+
## 🌻 Synopsis <a href="https://discord.gg/3qme4XHNKN"><img alt="Galtzo FLOSS Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px.svg" width="8%" align="right"/></a> <a href="https://ruby-toolbox.com"><img alt="ruby-lang Logo, Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5" src="https://logos.galtzo.com/assets/images/ruby-lang/avatar-128px.svg" width="8%" align="right"/></a>
|
|
56
23
|
|
|
57
|
-
Dotenv::Merge
|
|
24
|
+
Dotenv::Merge intelligently merges two versions of a dotenv (`.env`) file. It is built on [ast-merge][ast-merge], [plain-merge][plain-merge], and [tree_haver][tree_haver]. Its parser enters through `TreeHaver.parser_for(:dotenv, backend_type: :line)` and builds dotenv-specific ownership rules on the shared plain line substrate.
|
|
58
25
|
|
|
59
26
|
### Key Features
|
|
60
27
|
|
|
@@ -63,7 +30,9 @@ Dotenv::Merge is a standalone Ruby module that intelligently merges two versions
|
|
|
63
30
|
- **Comment-Preserving**: Comments and blank lines are preserved in their context
|
|
64
31
|
- **Freeze Block Support**: Respects freeze markers (default: `dotenv-merge:freeze` / `dotenv-merge:unfreeze`) for merge control - customizable to match your project's conventions
|
|
65
32
|
- **Full Provenance**: Tracks origin of every line
|
|
66
|
-
- **
|
|
33
|
+
- **StructuredMerge Native**: Depends on `ast-merge` and `tree_haver`, matching the rest of the Ruby merge family
|
|
34
|
+
- **Line Backend**: Registers `:dotenv` and `:env` parser paths through
|
|
35
|
+
`TreeHaver.parser_for` and carries the underlying plain line analysis.
|
|
67
36
|
- **Customizable**:
|
|
68
37
|
- `signature_generator` - callable custom signature generators
|
|
69
38
|
- `preference` - setting of `:template`, `:destination`, or a Hash for per-node-type preferences
|
|
@@ -97,211 +66,48 @@ result = merger.merge
|
|
|
97
66
|
File.write("merged.env", result.to_s)
|
|
98
67
|
```
|
|
99
68
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
| Gem | Version / CI | Language<br>/ Format | Parser Backend(s) | Description |
|
|
105
|
-
|------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------:|----------------------|-------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
|
|
106
|
-
| [tree_haver][tree_haver] | [![Version][tree_haver-gem-i]][tree_haver-gem] <br/> [![CI][tree_haver-ci-i]][tree_haver-ci] | Multi | Supported Backends: MRI C, Rust, FFI, Java, Prism, Psych, Commonmarker, Markly, Citrus, Parslet | **Foundation**: Cross-Ruby adapter for parsing libraries (like Faraday for HTTP) |
|
|
107
|
-
| [ast-merge][ast-merge] | [![Version][ast-merge-gem-i]][ast-merge-gem] <br/> [![CI][ast-merge-ci-i]][ast-merge-ci] | Text | internal | **Infrastructure**: Shared base classes and merge logic for all `*-merge` gems |
|
|
108
|
-
| [bash-merge][bash-merge] | [![Version][bash-merge-gem-i]][bash-merge-gem] <br/> [![CI][bash-merge-ci-i]][bash-merge-ci] | Bash | [tree-sitter-bash][ts-bash] (via tree_haver) | Smart merge for Bash scripts |
|
|
109
|
-
| [commonmarker-merge][commonmarker-merge] | [![Version][commonmarker-merge-gem-i]][commonmarker-merge-gem] <br/> [![CI][commonmarker-merge-ci-i]][commonmarker-merge-ci] | Markdown | [Commonmarker][commonmarker] (via tree_haver) | Smart merge for Markdown (CommonMark via comrak Rust) |
|
|
110
|
-
| [dotenv-merge][dotenv-merge] | [![Version][dotenv-merge-gem-i]][dotenv-merge-gem] <br/> [![CI][dotenv-merge-ci-i]][dotenv-merge-ci] | Dotenv | internal | Smart merge for `.env` files |
|
|
111
|
-
| [json-merge][json-merge] | [![Version][json-merge-gem-i]][json-merge-gem] <br/> [![CI][json-merge-ci-i]][json-merge-ci] | JSON | [tree-sitter-json][ts-json] (via tree_haver) | Smart merge for JSON files |
|
|
112
|
-
| [jsonc-merge][jsonc-merge] | [![Version][jsonc-merge-gem-i]][jsonc-merge-gem] <br/> [![CI][jsonc-merge-ci-i]][jsonc-merge-ci] | JSONC | [tree-sitter-jsonc][ts-jsonc] (via tree_haver) | ⚠️ Proof of concept; Smart merge for JSON with Comments |
|
|
113
|
-
| [markdown-merge][markdown-merge] | [![Version][markdown-merge-gem-i]][markdown-merge-gem] <br/> [![CI][markdown-merge-ci-i]][markdown-merge-ci] | Markdown | [Commonmarker][commonmarker] / [Markly][markly] (via tree_haver), [Parslet][parslet] | **Foundation**: Shared base for Markdown mergers with inner code block merging |
|
|
114
|
-
| [markly-merge][markly-merge] | [![Version][markly-merge-gem-i]][markly-merge-gem] <br/> [![CI][markly-merge-ci-i]][markly-merge-ci] | Markdown | [Markly][markly] (via tree_haver) | Smart merge for Markdown (CommonMark via cmark-gfm C) |
|
|
115
|
-
| [prism-merge][prism-merge] | [![Version][prism-merge-gem-i]][prism-merge-gem] <br/> [![CI][prism-merge-ci-i]][prism-merge-ci] | Ruby | [Prism][prism] (`prism` std lib gem) | Smart merge for Ruby source files |
|
|
116
|
-
| [psych-merge][psych-merge] | [![Version][psych-merge-gem-i]][psych-merge-gem] <br/> [![CI][psych-merge-ci-i]][psych-merge-ci] | YAML | [Psych][psych] (`psych` std lib gem) | Smart merge for YAML files |
|
|
117
|
-
| [rbs-merge][rbs-merge] | [![Version][rbs-merge-gem-i]][rbs-merge-gem] <br/> [![CI][rbs-merge-ci-i]][rbs-merge-ci] | RBS | [tree-sitter-bash][ts-rbs] (via tree_haver), [RBS][rbs] (`rbs` std lib gem) | Smart merge for Ruby type signatures |
|
|
118
|
-
| [toml-merge][toml-merge] | [![Version][toml-merge-gem-i]][toml-merge-gem] <br/> [![CI][toml-merge-ci-i]][toml-merge-ci] | TOML | [Parslet + toml][toml], [Citrus + toml-rb][toml-rb], [tree-sitter-toml][ts-toml] (all via tree_haver) | Smart merge for TOML files |
|
|
119
|
-
|
|
120
|
-
#### Backend Platform Compatibility
|
|
121
|
-
|
|
122
|
-
tree_haver supports multiple parsing backends, but not all backends work on all Ruby platforms:
|
|
123
|
-
|
|
124
|
-
| Platform 👉️<br> TreeHaver Backend 👇️ | MRI | JRuby | TruffleRuby | Notes |
|
|
125
|
-
|-------------------------------------------------|:---:|:-----:|:-----------:|----------------------------------------------------------------------------|
|
|
126
|
-
| **MRI** ([ruby_tree_sitter][ruby_tree_sitter]) | ✅ | ❌ | ❌ | C extension, MRI only |
|
|
127
|
-
| **Rust** ([tree_stump][tree_stump]) | ✅ | ❌ | ❌ | Rust extension via magnus/rb-sys, MRI only |
|
|
128
|
-
| **FFI** ([ffi][ffi]) | ✅ | ✅ | ❌ | TruffleRuby's FFI doesn't support `STRUCT_BY_VALUE` |
|
|
129
|
-
| **Java** ([jtreesitter][jtreesitter]) | ❌ | ✅ | ❌ | JRuby only, requires grammar JARs |
|
|
130
|
-
| **Prism** ([prism][prism]) | ✅ | ✅ | ✅ | Ruby parsing, stdlib in Ruby 3.4+ |
|
|
131
|
-
| **Psych** ([psych][psych]) | ✅ | ✅ | ✅ | YAML parsing, stdlib |
|
|
132
|
-
| **Citrus** ([citrus][citrus]) | ✅ | ✅ | ✅ | Pure Ruby PEG parser, no native dependencies |
|
|
133
|
-
| **Parslet** ([parslet][parslet]) | ✅ | ✅ | ✅ | Pure Ruby PEG parser, no native dependencies |
|
|
134
|
-
| **Commonmarker** ([commonmarker][commonmarker]) | ✅ | ❌ | ❓ | Rust extension for Markdown (via [commonmarker-merge][commonmarker-merge]) |
|
|
135
|
-
| **Markly** ([markly][markly]) | ✅ | ❌ | ❓ | C extension for Markdown (via [markly-merge][markly-merge]) |
|
|
136
|
-
|
|
137
|
-
**Legend**: ✅ = Works, ❌ = Does not work, ❓ = Untested
|
|
138
|
-
|
|
139
|
-
**Why some backends don't work on certain platforms**:
|
|
140
|
-
|
|
141
|
-
- **JRuby**: Runs on the JVM; cannot load native C/Rust extensions (`.so` files)
|
|
142
|
-
- **TruffleRuby**: Has C API emulation via Sulong/LLVM, but it doesn't expose all MRI internals that native extensions require (e.g., `RBasic.flags`, `rb_gc_writebarrier`)
|
|
143
|
-
- **FFI on TruffleRuby**: TruffleRuby's FFI implementation doesn't support returning structs by value, which tree-sitter's C API requires
|
|
144
|
-
|
|
145
|
-
**Example implementations** for the gem templating use case:
|
|
146
|
-
|
|
147
|
-
| Gem | Purpose | Description |
|
|
148
|
-
|--------------------------|-----------------|-----------------------------------------------|
|
|
149
|
-
| [kettle-dev][kettle-dev] | Gem Development | Gem templating tool using `*-merge` gems |
|
|
150
|
-
| [kettle-jem][kettle-jem] | Gem Templating | Gem template library with smart merge support |
|
|
151
|
-
|
|
152
|
-
[tree_haver]: https://github.com/kettle-rb/tree_haver
|
|
153
|
-
[ast-merge]: https://github.com/kettle-rb/ast-merge
|
|
154
|
-
[prism-merge]: https://github.com/kettle-rb/prism-merge
|
|
155
|
-
[psych-merge]: https://github.com/kettle-rb/psych-merge
|
|
156
|
-
[json-merge]: https://github.com/kettle-rb/json-merge
|
|
157
|
-
[jsonc-merge]: https://github.com/kettle-rb/jsonc-merge
|
|
158
|
-
[bash-merge]: https://github.com/kettle-rb/bash-merge
|
|
159
|
-
[rbs-merge]: https://github.com/kettle-rb/rbs-merge
|
|
160
|
-
[dotenv-merge]: https://github.com/kettle-rb/dotenv-merge
|
|
161
|
-
[toml-merge]: https://github.com/kettle-rb/toml-merge
|
|
162
|
-
[markdown-merge]: https://github.com/kettle-rb/markdown-merge
|
|
163
|
-
[markly-merge]: https://github.com/kettle-rb/markly-merge
|
|
164
|
-
[commonmarker-merge]: https://github.com/kettle-rb/commonmarker-merge
|
|
165
|
-
[kettle-dev]: https://github.com/kettle-rb/kettle-dev
|
|
166
|
-
[kettle-jem]: https://github.com/kettle-rb/kettle-jem
|
|
167
|
-
[tree_haver-gem]: https://bestgems.org/gems/tree_haver
|
|
168
|
-
[ast-merge-gem]: https://bestgems.org/gems/ast-merge
|
|
169
|
-
[prism-merge-gem]: https://bestgems.org/gems/prism-merge
|
|
170
|
-
[psych-merge-gem]: https://bestgems.org/gems/psych-merge
|
|
171
|
-
[json-merge-gem]: https://bestgems.org/gems/json-merge
|
|
172
|
-
[jsonc-merge-gem]: https://bestgems.org/gems/jsonc-merge
|
|
173
|
-
[bash-merge-gem]: https://bestgems.org/gems/bash-merge
|
|
174
|
-
[rbs-merge-gem]: https://bestgems.org/gems/rbs-merge
|
|
175
|
-
[dotenv-merge-gem]: https://bestgems.org/gems/dotenv-merge
|
|
176
|
-
[toml-merge-gem]: https://bestgems.org/gems/toml-merge
|
|
177
|
-
[markdown-merge-gem]: https://bestgems.org/gems/markdown-merge
|
|
178
|
-
[markly-merge-gem]: https://bestgems.org/gems/markly-merge
|
|
179
|
-
[commonmarker-merge-gem]: https://bestgems.org/gems/commonmarker-merge
|
|
180
|
-
[kettle-dev-gem]: https://bestgems.org/gems/kettle-dev
|
|
181
|
-
[kettle-jem-gem]: https://bestgems.org/gems/kettle-jem
|
|
182
|
-
[tree_haver-gem-i]: https://img.shields.io/gem/v/tree_haver.svg
|
|
183
|
-
[ast-merge-gem-i]: https://img.shields.io/gem/v/ast-merge.svg
|
|
184
|
-
[prism-merge-gem-i]: https://img.shields.io/gem/v/prism-merge.svg
|
|
185
|
-
[psych-merge-gem-i]: https://img.shields.io/gem/v/psych-merge.svg
|
|
186
|
-
[json-merge-gem-i]: https://img.shields.io/gem/v/json-merge.svg
|
|
187
|
-
[jsonc-merge-gem-i]: https://img.shields.io/gem/v/jsonc-merge.svg
|
|
188
|
-
[bash-merge-gem-i]: https://img.shields.io/gem/v/bash-merge.svg
|
|
189
|
-
[rbs-merge-gem-i]: https://img.shields.io/gem/v/rbs-merge.svg
|
|
190
|
-
[dotenv-merge-gem-i]: https://img.shields.io/gem/v/dotenv-merge.svg
|
|
191
|
-
[toml-merge-gem-i]: https://img.shields.io/gem/v/toml-merge.svg
|
|
192
|
-
[markdown-merge-gem-i]: https://img.shields.io/gem/v/markdown-merge.svg
|
|
193
|
-
[markly-merge-gem-i]: https://img.shields.io/gem/v/markly-merge.svg
|
|
194
|
-
[commonmarker-merge-gem-i]: https://img.shields.io/gem/v/commonmarker-merge.svg
|
|
195
|
-
[kettle-dev-gem-i]: https://img.shields.io/gem/v/kettle-dev.svg
|
|
196
|
-
[kettle-jem-gem-i]: https://img.shields.io/gem/v/kettle-jem.svg
|
|
197
|
-
[tree_haver-ci-i]: https://github.com/kettle-rb/tree_haver/actions/workflows/current.yml/badge.svg
|
|
198
|
-
[ast-merge-ci-i]: https://github.com/kettle-rb/ast-merge/actions/workflows/current.yml/badge.svg
|
|
199
|
-
[prism-merge-ci-i]: https://github.com/kettle-rb/prism-merge/actions/workflows/current.yml/badge.svg
|
|
200
|
-
[psych-merge-ci-i]: https://github.com/kettle-rb/psych-merge/actions/workflows/current.yml/badge.svg
|
|
201
|
-
[json-merge-ci-i]: https://github.com/kettle-rb/json-merge/actions/workflows/current.yml/badge.svg
|
|
202
|
-
[jsonc-merge-ci-i]: https://github.com/kettle-rb/jsonc-merge/actions/workflows/current.yml/badge.svg
|
|
203
|
-
[bash-merge-ci-i]: https://github.com/kettle-rb/bash-merge/actions/workflows/current.yml/badge.svg
|
|
204
|
-
[rbs-merge-ci-i]: https://github.com/kettle-rb/rbs-merge/actions/workflows/current.yml/badge.svg
|
|
205
|
-
[dotenv-merge-ci-i]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml/badge.svg
|
|
206
|
-
[toml-merge-ci-i]: https://github.com/kettle-rb/toml-merge/actions/workflows/current.yml/badge.svg
|
|
207
|
-
[markdown-merge-ci-i]: https://github.com/kettle-rb/markdown-merge/actions/workflows/current.yml/badge.svg
|
|
208
|
-
[markly-merge-ci-i]: https://github.com/kettle-rb/markly-merge/actions/workflows/current.yml/badge.svg
|
|
209
|
-
[commonmarker-merge-ci-i]: https://github.com/kettle-rb/commonmarker-merge/actions/workflows/current.yml/badge.svg
|
|
210
|
-
[kettle-dev-ci-i]: https://github.com/kettle-rb/kettle-dev/actions/workflows/current.yml/badge.svg
|
|
211
|
-
[kettle-jem-ci-i]: https://github.com/kettle-rb/kettle-jem/actions/workflows/current.yml/badge.svg
|
|
212
|
-
[tree_haver-ci]: https://github.com/kettle-rb/tree_haver/actions/workflows/current.yml
|
|
213
|
-
[ast-merge-ci]: https://github.com/kettle-rb/ast-merge/actions/workflows/current.yml
|
|
214
|
-
[prism-merge-ci]: https://github.com/kettle-rb/prism-merge/actions/workflows/current.yml
|
|
215
|
-
[psych-merge-ci]: https://github.com/kettle-rb/psych-merge/actions/workflows/current.yml
|
|
216
|
-
[json-merge-ci]: https://github.com/kettle-rb/json-merge/actions/workflows/current.yml
|
|
217
|
-
[jsonc-merge-ci]: https://github.com/kettle-rb/jsonc-merge/actions/workflows/current.yml
|
|
218
|
-
[bash-merge-ci]: https://github.com/kettle-rb/bash-merge/actions/workflows/current.yml
|
|
219
|
-
[rbs-merge-ci]: https://github.com/kettle-rb/rbs-merge/actions/workflows/current.yml
|
|
220
|
-
[dotenv-merge-ci]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml
|
|
221
|
-
[toml-merge-ci]: https://github.com/kettle-rb/toml-merge/actions/workflows/current.yml
|
|
222
|
-
[markdown-merge-ci]: https://github.com/kettle-rb/markdown-merge/actions/workflows/current.yml
|
|
223
|
-
[markly-merge-ci]: https://github.com/kettle-rb/markly-merge/actions/workflows/current.yml
|
|
224
|
-
[commonmarker-merge-ci]: https://github.com/kettle-rb/commonmarker-merge/actions/workflows/current.yml
|
|
225
|
-
[kettle-dev-ci]: https://github.com/kettle-rb/kettle-dev/actions/workflows/current.yml
|
|
226
|
-
[kettle-jem-ci]: https://github.com/kettle-rb/kettle-jem/actions/workflows/current.yml
|
|
227
|
-
[prism]: https://github.com/ruby/prism
|
|
228
|
-
[psych]: https://github.com/ruby/psych
|
|
229
|
-
[ffi]: https://github.com/ffi/ffi
|
|
230
|
-
[ts-json]: https://github.com/tree-sitter/tree-sitter-json
|
|
231
|
-
[ts-jsonc]: https://gitlab.com/WhyNotHugo/tree-sitter-jsonc
|
|
232
|
-
[ts-bash]: https://github.com/tree-sitter/tree-sitter-bash
|
|
233
|
-
[ts-rbs]: https://github.com/joker1007/tree-sitter-rbs
|
|
234
|
-
[ts-toml]: https://github.com/tree-sitter-grammars/tree-sitter-toml
|
|
235
|
-
[dotenv]: https://github.com/bkeepers/dotenv
|
|
236
|
-
[rbs]: https://github.com/ruby/rbs
|
|
237
|
-
[toml-rb]: https://github.com/emancu/toml-rb
|
|
238
|
-
[toml]: https://github.com/jm/toml
|
|
239
|
-
[markly]: https://github.com/ioquatix/markly
|
|
240
|
-
[commonmarker]: https://github.com/gjtorikian/commonmarker
|
|
241
|
-
[ruby_tree_sitter]: https://github.com/Faveod/ruby-tree-sitter
|
|
242
|
-
[tree_stump]: https://github.com/joker1007/tree_stump
|
|
243
|
-
[jtreesitter]: https://central.sonatype.com/artifact/io.github.tree-sitter/jtreesitter
|
|
244
|
-
[citrus]: https://github.com/mjackson/citrus
|
|
245
|
-
[parslet]: https://github.com/kschiess/parslet
|
|
69
|
+
[ast-merge]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/ast-merge
|
|
70
|
+
[plain-merge]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/plain-merge
|
|
71
|
+
[tree_haver]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/tree_haver
|
|
246
72
|
|
|
247
73
|
## 💡 Info you can shake a stick at
|
|
248
74
|
|
|
249
|
-
| Tokens to Remember
|
|
250
|
-
|
|
251
|
-
| Works with
|
|
252
|
-
|
|
|
253
|
-
|
|
|
254
|
-
|
|
|
255
|
-
|
|
|
256
|
-
|
|
|
257
|
-
|
|
|
258
|
-
|
|
|
259
|
-
| Maintainer 🎖️ | [![Follow Me on LinkedIn][💖🖇linkedin-img]][💖🖇linkedin] [![Follow Me on Ruby.Social][💖🐘ruby-mast-img]][💖🐘ruby-mast] [![Follow Me on Bluesky][💖🦋bluesky-img]][💖🦋bluesky] [![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact] [![My technical writing][💖💁🏼♂️devto-img]][💖💁🏼♂️devto] |
|
|
260
|
-
| `...` 💖 | [![Find Me on WellFound:][💖✌️wellfound-img]][💖✌️wellfound] [![Find Me on CrunchBase][💖💲crunchbase-img]][💖💲crunchbase] [![My LinkTree][💖🌳linktree-img]][💖🌳linktree] [![More About Me][💖💁🏼♂️aboutme-img]][💖💁🏼♂️aboutme] [🧊][💖🧊berg] [🐙][💖🐙hub] [🛖][💖🛖hut] [🧪][💖🧪lab] |
|
|
75
|
+
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
|
76
|
+
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|
77
|
+
| Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf]|
|
|
78
|
+
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Get help from RubyForum][✉️ruby-forum-img]][✉️ruby-forum] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
79
|
+
| Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on GitHub.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
|
|
80
|
+
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![Maintainer Blog][🚂maint-blog-img]][🚂maint-blog] [![GitLab Wiki][📜gl-wiki-img]][📜gl-wiki] [![GitHub Wiki][📜gh-wiki-img]][📜gh-wiki] |
|
|
81
|
+
| Compliance | [![License: AGPL-3.0-only OR PolyForm-Small-Business-1.0.0][📄license-img]][📄license] [![Apache license compatibility: Category X][📄license-compat-img]][📄license-compat] [![📄ilo-declaration-img]][📄ilo-declaration] [![Security Policy][🔐security-img]][🔐security] [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct] [![SemVer 2.0.0][📌semver-img]][📌semver] |
|
|
82
|
+
| Style | [![Enforced Code Style Linter][💎rlts-img]][💎rlts] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] [![Gitmoji Commits][📌gitmoji-img]][📌gitmoji] [![Compatibility appraised by: appraisal2][💎appraisal2-img]][💎appraisal2] |
|
|
83
|
+
| Maintainer 🎖️ | [![Follow Me on LinkedIn][💖🖇linkedin-img]][💖🖇linkedin] [![Follow Me on Ruby.Social][💖🐘ruby-mast-img]][💖🐘ruby-mast] [![Follow Me on Bluesky][💖🦋bluesky-img]][💖🦋bluesky] [![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact] [![My technical writing][💖💁🏼♂️devto-img]][💖💁🏼♂️devto] |
|
|
84
|
+
| `...` 💖 | [![Find Me on WellFound:][💖✌️wellfound-img]][💖✌️wellfound] [![Find Me on CrunchBase][💖💲crunchbase-img]][💖💲crunchbase] [![My LinkTree][💖🌳linktree-img]][💖🌳linktree] [![More About Me][💖💁🏼♂️aboutme-img]][💖💁🏼♂️aboutme] [🧊][💖🧊berg] [🐙][💖🐙hub] [🛖][💖🛖hut] [🧪][💖🧪lab] |
|
|
261
85
|
|
|
262
86
|
### Compatibility
|
|
263
87
|
|
|
264
|
-
Compatible with MRI Ruby
|
|
88
|
+
Compatible with MRI Ruby 4.0.0+, and concordant releases of JRuby, and TruffleRuby.
|
|
89
|
+
CI workflows and Appraisals are generated for MRI Ruby 4.0.0+.
|
|
90
|
+
This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
|
|
91
|
+
may be higher than the gem's runtime compatibility floor when legacy Rubies are
|
|
92
|
+
not practical for the current toolchain.
|
|
265
93
|
|
|
266
|
-
|
|
267
|
-
|------------------------------------------------|--------------------------------------------------------|
|
|
268
|
-
| 👟 Check it out\! | ✨ [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
|
|
94
|
+
<a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
|
|
269
95
|
|
|
270
|
-
|
|
96
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
271
97
|
|
|
272
98
|
<details markdown="1">
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
|
276
|
-
|
|
277
|
-
|
|
|
278
|
-
|
|
|
279
|
-
|
|
|
280
|
-
|
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
[
|
|
285
|
-
|
|
286
|
-
### Enterprise Support [][🏙️entsup-tidelift]
|
|
287
|
-
|
|
288
|
-
Available as part of the Tidelift Subscription.
|
|
289
|
-
|
|
290
|
-
<details markdown="1">
|
|
291
|
-
<summary>Need enterprise-level guarantees?</summary>
|
|
292
|
-
|
|
293
|
-
The maintainers of this and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.
|
|
294
|
-
|
|
295
|
-
[![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]
|
|
296
|
-
|
|
297
|
-
- 💡Subscribe for support guarantees covering *all* your FLOSS dependencies
|
|
298
|
-
- 💡Tidelift is part of [Sonar][🏙️entsup-tidelift-sonar]
|
|
299
|
-
- 💡Tidelift pays maintainers to maintain the software you depend on\!<br/>📊`@`Pointy Haired Boss: An [enterprise support][🏙️entsup-tidelift] subscription is "[never gonna let you down][🧮kloc]", and *supports* open source maintainers
|
|
300
|
-
Alternatively:
|
|
301
|
-
|
|
302
|
-
- [![Live Chat on Discord][✉️discord-invite-img-ftb]][🖼️galtzo-discord]
|
|
303
|
-
- [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork]
|
|
304
|
-
- [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor]
|
|
99
|
+
<summary>How kettle-dev manages complexity in tests</summary>
|
|
100
|
+
|
|
101
|
+
| Gem | Source | Role | Total downloads |
|
|
102
|
+
|-----|--------|------|---------------------|
|
|
103
|
+
| [appraisal2](https://clickgems.clickhouse.com/dashboard/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [](https://clickgems.clickhouse.com/dashboard/appraisal2) |
|
|
104
|
+
| [appraisal2-rubocop](https://clickgems.clickhouse.com/dashboard/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [](https://clickgems.clickhouse.com/dashboard/appraisal2-rubocop) |
|
|
105
|
+
| [kettle-dev](https://clickgems.clickhouse.com/dashboard/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [](https://clickgems.clickhouse.com/dashboard/kettle-dev) |
|
|
106
|
+
| [kettle-jem](https://clickgems.clickhouse.com/dashboard/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [](https://clickgems.clickhouse.com/dashboard/kettle-jem) |
|
|
107
|
+
| [kettle-soup-cover](https://clickgems.clickhouse.com/dashboard/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [](https://clickgems.clickhouse.com/dashboard/kettle-soup-cover) |
|
|
108
|
+
| [kettle-test](https://clickgems.clickhouse.com/dashboard/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [](https://clickgems.clickhouse.com/dashboard/kettle-test) |
|
|
109
|
+
| [rubocop-lts](https://clickgems.clickhouse.com/dashboard/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [](https://clickgems.clickhouse.com/dashboard/rubocop-lts) |
|
|
110
|
+
| [turbo_tests2](https://clickgems.clickhouse.com/dashboard/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [](https://clickgems.clickhouse.com/dashboard/turbo_tests2) |
|
|
305
111
|
|
|
306
112
|
</details>
|
|
307
113
|
|
|
@@ -319,41 +125,6 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
319
125
|
gem install dotenv-merge
|
|
320
126
|
```
|
|
321
127
|
|
|
322
|
-
### 🔒 Secure Installation
|
|
323
|
-
|
|
324
|
-
<details markdown="1">
|
|
325
|
-
<summary>For Medium or High Security Installations</summary>
|
|
326
|
-
|
|
327
|
-
This gem is cryptographically signed, and has verifiable [SHA-256 and SHA-512][💎SHA_checksums] checksums by
|
|
328
|
-
[stone\_checksums][💎stone_checksums]. Be sure the gem you install hasn’t been tampered with
|
|
329
|
-
by following the instructions below.
|
|
330
|
-
|
|
331
|
-
Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
|
|
332
|
-
|
|
333
|
-
```console
|
|
334
|
-
gem cert --add <(curl -Ls https://raw.github.com/galtzo-floss/certs/main/pboling.pem)
|
|
335
|
-
```
|
|
336
|
-
|
|
337
|
-
You only need to do that once. Then proceed to install with:
|
|
338
|
-
|
|
339
|
-
```console
|
|
340
|
-
gem install dotenv-merge -P HighSecurity
|
|
341
|
-
```
|
|
342
|
-
|
|
343
|
-
The `HighSecurity` trust profile will verify signed gems, and not allow the installation of unsigned dependencies.
|
|
344
|
-
|
|
345
|
-
If you want to up your security game full-time:
|
|
346
|
-
|
|
347
|
-
```console
|
|
348
|
-
bundle config set --global trust-policy MediumSecurity
|
|
349
|
-
```
|
|
350
|
-
|
|
351
|
-
`MediumSecurity` instead of `HighSecurity` is necessary if not all the gems you use are signed.
|
|
352
|
-
|
|
353
|
-
NOTE: Be prepared to track down certs for signed gems and add them the same way you added mine.
|
|
354
|
-
|
|
355
|
-
</details>
|
|
356
|
-
|
|
357
128
|
## ⚙️ Configuration
|
|
358
129
|
|
|
359
130
|
```ruby
|
|
@@ -445,63 +216,6 @@ result = merger.merge
|
|
|
445
216
|
# Result includes DATABASE_URL from destination + NEW_FEATURE_FLAG from template
|
|
446
217
|
```
|
|
447
218
|
|
|
448
|
-
## 🦷 FLOSS Funding
|
|
449
|
-
|
|
450
|
-
While kettle-rb tools are free software and will always be, the project would benefit immensely from some funding.
|
|
451
|
-
Raising a monthly budget of... "dollars" would make the project more sustainable.
|
|
452
|
-
|
|
453
|
-
We welcome both individual and corporate sponsors\! We also offer a
|
|
454
|
-
wide array of funding channels to account for your preferences
|
|
455
|
-
(although currently [Open Collective][🖇osc] is our preferred funding platform).
|
|
456
|
-
|
|
457
|
-
**If you're working in a company that's making significant use of kettle-rb tools we'd
|
|
458
|
-
appreciate it if you suggest to your company to become a kettle-rb sponsor.**
|
|
459
|
-
|
|
460
|
-
You can support the development of kettle-rb tools via
|
|
461
|
-
[GitHub Sponsors][🖇sponsor],
|
|
462
|
-
[Liberapay][⛳liberapay],
|
|
463
|
-
[PayPal][🖇paypal],
|
|
464
|
-
[Open Collective][🖇osc]
|
|
465
|
-
and [Tidelift][🏙️entsup-tidelift].
|
|
466
|
-
|
|
467
|
-
| 📍 NOTE |
|
|
468
|
-
| --- |
|
|
469
|
-
| If doing a sponsorship in the form of donation is problematic for your company <br/> from an accounting standpoint, we'd recommend the use of Tidelift, <br/> where you can get a support-like subscription instead. |
|
|
470
|
-
|
|
471
|
-
### Open Collective for Individuals
|
|
472
|
-
|
|
473
|
-
Support us with a monthly donation and help us continue our activities. \[[Become a backer][🖇osc-backers]\]
|
|
474
|
-
|
|
475
|
-
NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day, automatically.
|
|
476
|
-
|
|
477
|
-
<!-- OPENCOLLECTIVE-INDIVIDUALS:START -->
|
|
478
|
-
No backers yet. Be the first!
|
|
479
|
-
<!-- OPENCOLLECTIVE-INDIVIDUALS:END -->
|
|
480
|
-
|
|
481
|
-
### Open Collective for Organizations
|
|
482
|
-
|
|
483
|
-
Become a sponsor and get your logo on our README on GitHub with a link to your site. \[[Become a sponsor][🖇osc-sponsors]\]
|
|
484
|
-
|
|
485
|
-
NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day, automatically.
|
|
486
|
-
|
|
487
|
-
<!-- OPENCOLLECTIVE-ORGANIZATIONS:START -->
|
|
488
|
-
No sponsors yet. Be the first!
|
|
489
|
-
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
490
|
-
|
|
491
|
-
[kettle-readme-backers]: https://github.com/kettle-rb/dotenv-merge/blob/main/exe/kettle-readme-backers
|
|
492
|
-
|
|
493
|
-
### Another way to support open-source
|
|
494
|
-
|
|
495
|
-
I’m driven by a passion to foster a thriving open-source community – a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions. I was recently affected by layoffs, and the tech jobs market is unwelcoming. I’m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 🐔 chickens, 2 🐶 dogs, 3 🐰 rabbits, 8 🐈 cats).
|
|
496
|
-
|
|
497
|
-
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in `bundle fund`.
|
|
498
|
-
|
|
499
|
-
I’m developing a new library, [floss\_funding][🖇floss-funding-gem], designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
|
|
500
|
-
|
|
501
|
-
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
502
|
-
|
|
503
|
-
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
|
|
504
|
-
|
|
505
219
|
## 🔐 Security
|
|
506
220
|
|
|
507
221
|
See [SECURITY.md][🔐security].
|
|
@@ -509,78 +223,36 @@ See [SECURITY.md][🔐security].
|
|
|
509
223
|
## 🤝 Contributing
|
|
510
224
|
|
|
511
225
|
If you need some ideas of where to help, you could work on adding more code coverage,
|
|
512
|
-
or if it is already 💯 (see [below](#code-coverage)) check [
|
|
226
|
+
or if it is already 💯 (see [below](#code-coverage)) check [issues][🤝gh-issues] or [PRs][🤝gh-pulls],
|
|
513
227
|
or use the gem and think about how it could be better.
|
|
514
228
|
|
|
515
229
|
We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
|
|
516
230
|
|
|
517
231
|
See [CONTRIBUTING.md][🤝contributing] for more detailed instructions.
|
|
518
232
|
|
|
519
|
-
### 🚀 Release Instructions
|
|
520
|
-
|
|
521
|
-
See [CONTRIBUTING.md][🤝contributing].
|
|
522
|
-
|
|
523
233
|
### Code Coverage
|
|
524
234
|
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
[![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls]
|
|
528
|
-
|
|
529
|
-
[![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov]
|
|
530
|
-
|
|
531
|
-
### 🪇 Code of Conduct
|
|
532
|
-
|
|
533
|
-
Everyone interacting with this project's codebases, issue trackers,
|
|
534
|
-
chat rooms and mailing lists agrees to follow the [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct].
|
|
535
|
-
|
|
536
|
-
## 🌈 Contributors
|
|
537
|
-
|
|
538
|
-
[![Contributors][🖐contributors-img]][🖐contributors]
|
|
539
|
-
|
|
540
|
-
Made with [contributors-img][🖐contrib-rocks].
|
|
541
|
-
|
|
542
|
-
Also see GitLab Contributors: <https://gitlab.com/kettle-rb/dotenv-merge/-/graphs/main>
|
|
543
|
-
|
|
544
|
-
<details>
|
|
545
|
-
<summary>⭐️ Star History</summary>
|
|
546
|
-
|
|
547
|
-
<a href="https://star-history.com/#kettle-rb/dotenv-merge&Date">
|
|
548
|
-
<picture>
|
|
549
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date&theme=dark" />
|
|
550
|
-
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date" />
|
|
551
|
-
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date" />
|
|
552
|
-
</picture>
|
|
553
|
-
</a>
|
|
235
|
+
<details markdown="1">
|
|
236
|
+
<summary>Coverage service badges</summary>
|
|
554
237
|
|
|
555
238
|
</details>
|
|
556
239
|
|
|
557
240
|
## 📌 Versioning
|
|
558
241
|
|
|
559
|
-
This
|
|
560
|
-
|
|
561
|
-
Specifically, if a minor or patch version is released that breaks backward compatibility,
|
|
562
|
-
a new version should be immediately released that restores compatibility.
|
|
563
|
-
Breaking changes to the public API will only be introduced with new major versions.
|
|
564
|
-
|
|
565
|
-
> dropping support for a platform is both obviously and objectively a breaking change <br/>
|
|
566
|
-
> —Jordan Harband ([@ljharb](https://github.com/ljharb), maintainer of SemVer) [in SemVer issue 716][📌semver-breaking]
|
|
567
|
-
|
|
568
|
-
I understand that policy doesn't work universally ("exceptions to every rule\!"),
|
|
569
|
-
but it is the policy here.
|
|
570
|
-
As such, in many cases it is good to specify a dependency on this library using
|
|
571
|
-
the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
|
|
242
|
+
This library follows [![Semantic Versioning 2.0.0][📌semver-img]][📌semver] for its public API where practical.
|
|
243
|
+
For most applications, prefer the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
|
|
572
244
|
|
|
573
245
|
For example:
|
|
574
246
|
|
|
575
247
|
```ruby
|
|
576
|
-
spec.add_dependency("dotenv-merge", "~>
|
|
248
|
+
spec.add_dependency("dotenv-merge", "~> 7.0")
|
|
577
249
|
```
|
|
578
250
|
|
|
579
251
|
<details markdown="1">
|
|
580
252
|
<summary>📌 Is "Platform Support" part of the public API? More details inside.</summary>
|
|
581
253
|
|
|
582
|
-
|
|
583
|
-
|
|
254
|
+
Dropping support for a platform can be a breaking change for affected users.
|
|
255
|
+
If a release changes supported platforms, it should be called out clearly in the changelog and versioned with that impact in mind.
|
|
584
256
|
|
|
585
257
|
To get a better understanding of how SemVer is intended to work over a project's lifetime,
|
|
586
258
|
read this article from the creator of SemVer:
|
|
@@ -593,68 +265,19 @@ See [CHANGELOG.md][📌changelog] for a list of releases.
|
|
|
593
265
|
|
|
594
266
|
## 📄 License
|
|
595
267
|
|
|
596
|
-
The gem is available
|
|
597
|
-
|
|
598
|
-
See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright-notice-explainer].
|
|
599
|
-
|
|
600
|
-
### © Copyright
|
|
601
|
-
|
|
602
|
-
<ul>
|
|
603
|
-
<li>
|
|
604
|
-
Copyright (c) 2025-2026 Peter H. Boling, of
|
|
605
|
-
<a href="https://discord.gg/3qme4XHNKN">
|
|
606
|
-
Galtzo.com
|
|
607
|
-
<picture>
|
|
608
|
-
<img src="https://logos.galtzo.com/assets/images/galtzo-floss/avatar-128px-blank.svg" alt="Galtzo.com Logo (Wordless) by Aboling0, CC BY-SA 4.0" width="24">
|
|
609
|
-
</picture>
|
|
610
|
-
</a>, and dotenv-merge contributors.
|
|
611
|
-
</li>
|
|
612
|
-
</ul>
|
|
613
|
-
|
|
614
|
-
## 🤑 A request for help
|
|
615
|
-
|
|
616
|
-
Maintainers have teeth and need to pay their dentists.
|
|
617
|
-
After getting laid off in an RIF in March, and encountering difficulty finding a new one,
|
|
618
|
-
I began spending most of my time building open source tools.
|
|
619
|
-
I'm hoping to be able to pay for my kids' health insurance this month,
|
|
620
|
-
so if you value the work I am doing, I need your support.
|
|
621
|
-
Please consider sponsoring me or the project.
|
|
622
|
-
|
|
623
|
-
To join the community or get help 👇️ Join the Discord.
|
|
624
|
-
|
|
625
|
-
[![Live Chat on Discord][✉️discord-invite-img-ftb]][🖼️galtzo-discord]
|
|
626
|
-
|
|
627
|
-
To say "thanks\!" ☝️ Join the Discord or 👇️ send money.
|
|
628
|
-
|
|
629
|
-
[![Sponsor kettle-rb/dotenv-merge on Open Source Collective][🖇osc-all-bottom-img]][🖇osc] 💌 [![Sponsor me on GitHub Sponsors][🖇sponsor-bottom-img]][🖇sponsor] 💌 [![Sponsor me on Liberapay][⛳liberapay-bottom-img]][⛳liberapay] 💌 [![Donate on PayPal][🖇paypal-bottom-img]][🖇paypal]
|
|
630
|
-
|
|
631
|
-
### Please give the project a star ⭐ ♥.
|
|
268
|
+
The gem is available under the following licenses: [AGPL-3.0-only](https://github.com/structuredmerge/structuredmerge-ruby/blob/main/AGPL-3.0-only.md), [PolyForm-Small-Business-1.0.0](https://github.com/structuredmerge/structuredmerge-ruby/blob/main/PolyForm-Small-Business-1.0.0.md).
|
|
269
|
+
See [LICENSE.md][📄license] for details.
|
|
632
270
|
|
|
633
|
-
|
|
271
|
+
If none of the available licenses suit your use case, please [contact us](mailto:floss@galtzo.com) to discuss a custom commercial license.
|
|
634
272
|
|
|
635
273
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
636
274
|
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
|
637
275
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
638
|
-
[🖇osc-all-img]: https://img.shields.io/opencollective/all/kettle-rb
|
|
639
|
-
[🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/kettle-rb
|
|
640
|
-
[🖇osc-backers-img]: https://img.shields.io/opencollective/backers/kettle-rb
|
|
641
|
-
[🖇osc-backers]: https://opencollective.com/kettle-rb#backer
|
|
642
|
-
[🖇osc-backers-i]: https://opencollective.com/kettle-rb/backers/badge.svg?style=flat
|
|
643
|
-
[🖇osc-sponsors]: https://opencollective.com/kettle-rb#sponsor
|
|
644
|
-
[🖇osc-sponsors-i]: https://opencollective.com/kettle-rb/sponsors/badge.svg?style=flat
|
|
645
|
-
[🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/kettle-rb?style=for-the-badge
|
|
646
|
-
[🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/kettle-rb?style=for-the-badge
|
|
647
|
-
[🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/kettle-rb?style=for-the-badge
|
|
648
|
-
[🖇osc]: https://opencollective.com/kettle-rb
|
|
649
276
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
650
277
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
651
278
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
652
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
653
|
-
[🖇polar]: https://polar.sh/pboling
|
|
654
279
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
655
|
-
[🖇kofi]: https://ko-fi.com/
|
|
656
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
657
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
280
|
+
[🖇kofi]: https://ko-fi.com/pboling
|
|
658
281
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
659
282
|
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
|
660
283
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -667,19 +290,22 @@ Thanks for RTFM. ☺️
|
|
|
667
290
|
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge&logo=discord
|
|
668
291
|
[✉️ruby-friends-img]: https://img.shields.io/badge/daily.dev-%F0%9F%92%8E_Ruby_Friends-0A0A0A?style=for-the-badge&logo=dailydotdev&logoColor=white
|
|
669
292
|
[✉️ruby-friends]: https://app.daily.dev/squads/rubyfriends
|
|
293
|
+
[✉️ruby-forum-top-img]: https://img.shields.io/discourse/topics?server=https%3A%2F%2Fwww.rubyforum.org&style=flat&logo=discourse&label=Ruby%20Users%20Forum
|
|
294
|
+
[✉️ruby-forum-img]: https://img.shields.io/discourse/topics?server=https%3A%2F%2Fwww.rubyforum.org&style=for-the-badge&logo=discourse&label=Ruby%20Users%20Forum
|
|
295
|
+
[✉️ruby-forum]: https://www.rubyforum.org/tag/structuredmerge
|
|
670
296
|
[✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
|
|
671
|
-
[⛳️gem-namespace]: https://github.com/
|
|
297
|
+
[⛳️gem-namespace]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/dotenv-merge
|
|
672
298
|
[⛳️namespace-img]: https://img.shields.io/badge/namespace-Dotenv::Merge-3C2D2D.svg?style=square&logo=ruby&logoColor=white
|
|
673
|
-
[⛳️gem-name]: https://
|
|
299
|
+
[⛳️gem-name]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
674
300
|
[⛳️name-img]: https://img.shields.io/badge/name-dotenv--merge-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
|
|
675
|
-
[⛳️tag-img]: https://img.shields.io/github/tag/
|
|
676
|
-
[⛳️tag]:
|
|
301
|
+
[⛳️tag-img]: https://img.shields.io/github/tag/structuredmerge/structuredmerge-ruby.svg
|
|
302
|
+
[⛳️tag]: https://github.com/structuredmerge/structuredmerge-ruby/releases
|
|
677
303
|
[🚂maint-blog]: http://www.railsbling.com/tags/dotenv-merge
|
|
678
304
|
[🚂maint-blog-img]: https://img.shields.io/badge/blog-railsbling-0093D0.svg?style=for-the-badge&logo=rubyonrails&logoColor=orange
|
|
679
305
|
[🚂maint-contact]: http://www.railsbling.com/contact
|
|
680
306
|
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
|
681
307
|
[💖🖇linkedin]: http://www.linkedin.com/in/peterboling
|
|
682
|
-
[💖🖇linkedin-img]: https://img.shields.io/badge/
|
|
308
|
+
[💖🖇linkedin-img]: https://img.shields.io/badge/LinkedIn-Profile-0B66C2?style=flat&logo=newjapanprowrestling
|
|
683
309
|
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
|
684
310
|
[💖✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=flat&logo=wellfound
|
|
685
311
|
[💖💲crunchbase]: https://www.crunchbase.com/person/peter-boling
|
|
@@ -708,103 +334,63 @@ Thanks for RTFM. ☺️
|
|
|
708
334
|
[💁🏼♂️peterboling]: http://www.peterboling.com
|
|
709
335
|
[🚂railsbling]: http://www.railsbling.com
|
|
710
336
|
[📜src-gl-img]: https://img.shields.io/badge/GitLab-FBA326?style=for-the-badge&logo=Gitlab&logoColor=orange
|
|
711
|
-
[📜src-gl]: https://gitlab.com/
|
|
337
|
+
[📜src-gl]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/tree/main/gems/dotenv-merge
|
|
712
338
|
[📜src-cb-img]: https://img.shields.io/badge/CodeBerg-4893CC?style=for-the-badge&logo=CodeBerg&logoColor=blue
|
|
713
|
-
[📜src-cb]: https://codeberg.org/
|
|
714
|
-
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=
|
|
715
|
-
[📜src-gh]: https://github.com/
|
|
339
|
+
[📜src-cb]: https://codeberg.org/structuredmerge/structuredmerge-ruby/src/branch/main/gems/dotenv-merge
|
|
340
|
+
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=GitHub&logoColor=green
|
|
341
|
+
[📜src-gh]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/dotenv-merge
|
|
716
342
|
[📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
|
717
343
|
[📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
|
718
|
-
[📜gl-wiki]: https://gitlab.com/
|
|
719
|
-
[📜gh-wiki]: https://github.com/
|
|
720
|
-
[📜gl-wiki-img]: https://img.shields.io/badge/wiki-
|
|
721
|
-
[📜gh-wiki-img]: https://img.shields.io/badge/wiki-
|
|
722
|
-
[👽dl-rank]: https://
|
|
723
|
-
[👽dl-ranki]: https://img.shields.io/gem/
|
|
724
|
-
[👽
|
|
725
|
-
[👽oss-helpi]: https://www.codetriage.com/kettle-rb/dotenv-merge/badges/users.svg
|
|
726
|
-
[👽version]: https://bestgems.org/gems/dotenv-merge
|
|
344
|
+
[📜gl-wiki]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/wikis/home
|
|
345
|
+
[📜gh-wiki]: https://github.com/structuredmerge/structuredmerge-ruby/wiki
|
|
346
|
+
[📜gl-wiki-img]: https://img.shields.io/badge/wiki-gitlab-943CD2.svg?style=for-the-badge&logo=gitlab&logoColor=white
|
|
347
|
+
[📜gh-wiki-img]: https://img.shields.io/badge/wiki-github-943CD2.svg?style=for-the-badge&logo=github&logoColor=white
|
|
348
|
+
[👽dl-rank]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
349
|
+
[👽dl-ranki]: https://img.shields.io/gem/dt/dotenv-merge.svg
|
|
350
|
+
[👽version]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
727
351
|
[👽versioni]: https://img.shields.io/gem/v/dotenv-merge.svg
|
|
728
|
-
[
|
|
729
|
-
[
|
|
730
|
-
[🏀qlty-cov]: https://qlty.sh/gh/kettle-rb/projects/dotenv-merge/metrics/code?sort=coverageRating
|
|
731
|
-
[🏀qlty-covi]: https://qlty.sh/gh/kettle-rb/projects/dotenv-merge/coverage.svg
|
|
732
|
-
[🏀codecov]: https://codecov.io/gh/kettle-rb/dotenv-merge
|
|
733
|
-
[🏀codecovi]: https://codecov.io/gh/kettle-rb/dotenv-merge/graph/badge.svg
|
|
734
|
-
[🏀coveralls]: https://coveralls.io/github/kettle-rb/dotenv-merge?branch=main
|
|
735
|
-
[🏀coveralls-img]: https://coveralls.io/repos/github/kettle-rb/dotenv-merge/badge.svg?branch=main
|
|
736
|
-
[🖐codeQL]: https://github.com/kettle-rb/dotenv-merge/security/code-scanning
|
|
737
|
-
[🖐codeQL-img]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/codeql-analysis.yml/badge.svg
|
|
738
|
-
[🚎2-cov-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/coverage.yml
|
|
739
|
-
[🚎2-cov-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/coverage.yml/badge.svg
|
|
740
|
-
[🚎3-hd-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/heads.yml
|
|
741
|
-
[🚎3-hd-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/heads.yml/badge.svg
|
|
742
|
-
[🚎5-st-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/style.yml
|
|
743
|
-
[🚎5-st-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/style.yml/badge.svg
|
|
744
|
-
[🚎6-s-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/supported.yml
|
|
745
|
-
[🚎6-s-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/supported.yml/badge.svg
|
|
746
|
-
[🚎9-t-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/truffle.yml
|
|
747
|
-
[🚎9-t-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/truffle.yml/badge.svg
|
|
748
|
-
[🚎11-c-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml
|
|
749
|
-
[🚎11-c-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml/badge.svg
|
|
750
|
-
[🚎12-crh-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/dep-heads.yml
|
|
751
|
-
[🚎12-crh-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/dep-heads.yml/badge.svg
|
|
752
|
-
[🚎13-🔒️-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/locked_deps.yml
|
|
753
|
-
[🚎13-🔒️-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/locked_deps.yml/badge.svg
|
|
754
|
-
[🚎14-🔓️-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/unlocked_deps.yml
|
|
755
|
-
[🚎14-🔓️-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/unlocked_deps.yml/badge.svg
|
|
756
|
-
[🚎15-🪪-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/license-eye.yml
|
|
757
|
-
[🚎15-🪪-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/license-eye.yml/badge.svg
|
|
758
|
-
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
759
|
-
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
352
|
+
[🚎11-c-wf]: https://github.com/structuredmerge/structuredmerge-ruby/actions/workflows/current.yml
|
|
353
|
+
[🚎11-c-wfi]: https://github.com/structuredmerge/structuredmerge-ruby/actions/workflows/current.yml/badge.svg
|
|
760
354
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
761
|
-
[
|
|
762
|
-
[
|
|
763
|
-
[
|
|
764
|
-
[
|
|
765
|
-
[
|
|
766
|
-
[
|
|
767
|
-
[🤝gh-issues]: https://github.com/kettle-rb/dotenv-merge/issues
|
|
768
|
-
[🤝gh-pulls]: https://github.com/kettle-rb/dotenv-merge/pulls
|
|
769
|
-
[🤝gl-issues]: https://gitlab.com/kettle-rb/dotenv-merge/-/issues
|
|
770
|
-
[🤝gl-pulls]: https://gitlab.com/kettle-rb/dotenv-merge/-/merge_requests
|
|
771
|
-
[🤝cb-issues]: https://codeberg.org/kettle-rb/dotenv-merge/issues
|
|
772
|
-
[🤝cb-pulls]: https://codeberg.org/kettle-rb/dotenv-merge/pulls
|
|
355
|
+
[🤝gh-issues]: https://github.com/structuredmerge/structuredmerge-ruby/issues
|
|
356
|
+
[🤝gh-pulls]: https://github.com/structuredmerge/structuredmerge-ruby/pulls
|
|
357
|
+
[🤝gl-issues]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/issues
|
|
358
|
+
[🤝gl-pulls]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/merge_requests
|
|
359
|
+
[🤝cb-issues]: https://codeberg.org/structuredmerge/structuredmerge-ruby/issues
|
|
360
|
+
[🤝cb-pulls]: https://codeberg.org/structuredmerge/structuredmerge-ruby/pulls
|
|
773
361
|
[🤝cb-donate]: https://donate.codeberg.org/
|
|
774
|
-
[🤝contributing]: CONTRIBUTING.md
|
|
775
|
-
[🏀codecov-g]: https://codecov.io/gh/kettle-rb/dotenv-merge/graphs/tree.svg
|
|
362
|
+
[🤝contributing]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CONTRIBUTING.md
|
|
776
363
|
[🖐contrib-rocks]: https://contrib.rocks
|
|
777
|
-
[🖐contributors]: https://github.com/
|
|
778
|
-
[🖐contributors-img]: https://contrib.rocks/image?repo=
|
|
779
|
-
[
|
|
780
|
-
[🪇conduct]: CODE_OF_CONDUCT.md
|
|
364
|
+
[🖐contributors]: https://github.com/structuredmerge/structuredmerge-ruby/graphs/contributors
|
|
365
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=structuredmerge/structuredmerge-ruby
|
|
366
|
+
[🪇conduct]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CODE_OF_CONDUCT.md
|
|
781
367
|
[🪇conduct-img]: https://img.shields.io/badge/Contributor_Covenant-2.1-259D6C.svg
|
|
782
368
|
[📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
|
783
369
|
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
784
370
|
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-259D6C.svg?style=flat
|
|
785
371
|
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
786
372
|
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
787
|
-
[📌changelog]: CHANGELOG.md
|
|
373
|
+
[📌changelog]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CHANGELOG.md
|
|
788
374
|
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
789
375
|
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-34495e.svg?style=flat
|
|
790
376
|
[📌gitmoji]: https://gitmoji.dev
|
|
791
377
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
792
378
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
793
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
794
|
-
[🔐security]: SECURITY.md
|
|
379
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.589-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
380
|
+
[🔐security]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/SECURITY.md
|
|
795
381
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
796
382
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
797
|
-
[📄license]: LICENSE.
|
|
798
|
-
[📄license-ref]:
|
|
799
|
-
[📄license-img]: https://img.shields.io/badge/License-
|
|
800
|
-
[📄license-compat]: https://
|
|
801
|
-
[📄license-compat-img]: https://img.shields.io/badge/
|
|
383
|
+
[📄license]: LICENSE.md
|
|
384
|
+
[📄license-ref]: LICENSE.md
|
|
385
|
+
[📄license-img]: https://img.shields.io/badge/License-AGPL--3.0--only_OR_PolyForm--Small--Business--1.0.0-259D6C.svg
|
|
386
|
+
[📄license-compat]: https://www.apache.org/legal/resolved.html#category-x
|
|
387
|
+
[📄license-compat-img]: https://img.shields.io/badge/Apache_Incompatible:_Category_X-%E2%9C%97-C0392B.svg?style=flat&logo=Apache
|
|
802
388
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
|
803
389
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
|
804
390
|
[🚎yard-current]: http://rubydoc.info/gems/dotenv-merge
|
|
805
391
|
[🚎yard-head]: https://dotenv-merge.galtzo.com
|
|
806
392
|
[💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
|
|
807
|
-
[💎SHA_checksums]: https://gitlab.com/
|
|
393
|
+
[💎SHA_checksums]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/tree/main/checksums
|
|
808
394
|
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|
|
809
395
|
[💎rlts-img]: https://img.shields.io/badge/code_style_&_linting-rubocop--lts-34495e.svg?plastic&logo=ruby&logoColor=white
|
|
810
396
|
[💎appraisal2]: https://github.com/appraisal-rb/appraisal2
|