dotenv-merge 1.0.3 → 7.1.3
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 +94 -490
- 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 +150 -21
- data/lib/dotenv/merge/freeze_node.rb +1 -1
- data/lib/dotenv/merge/merge_result.rb +6 -6
- data/lib/dotenv/merge/provider.rb +690 -0
- data/lib/dotenv/merge/smart_merger.rb +360 -137
- data/lib/dotenv/merge/version.rb +5 -4
- data/lib/dotenv/merge.rb +34 -18
- data/lib/dotenv-merge.rb +9 -1
- data/sig/dotenv/merge.rbs +15 -200
- data.tar.gz.sig +0 -0
- metadata +113 -80
- metadata.gz.sig +0 -0
- data/CHANGELOG.md +0 -120
- 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,34 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[🖼️galtzo-i]: https://logos.galtzo.com/assets/images/galtzo-floss/avatar-192px.svg
|
|
4
|
-
[🖼️galtzo-discord]: https://discord.gg/3qme4XHNKN
|
|
5
|
-
[🖼️ruby-lang-i]: https://logos.galtzo.com/assets/images/ruby-lang/avatar-192px.svg
|
|
6
|
-
[🖼️ruby-lang]: https://www.ruby-lang.org/
|
|
7
|
-
[🖼️kettle-rb-i]: https://logos.galtzo.com/assets/images/kettle-rb/avatar-192px.svg
|
|
8
|
-
[🖼️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>
|
|
9
2
|
|
|
10
3
|
# ☯️ Dotenv::Merge
|
|
11
4
|
|
|
12
|
-
[![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]
|
|
13
6
|
|
|
14
|
-
`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.
|
|
15
8
|
|
|
16
|
-
|
|
9
|
+
---
|
|
17
10
|
|
|
18
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.
|
|
19
12
|
|
|
20
|
-
[![
|
|
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]
|
|
21
14
|
|
|
22
|
-
<details>
|
|
23
|
-
|
|
15
|
+
<details markdown="1">
|
|
16
|
+
<summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
|
|
24
17
|
|
|
25
18
|
I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
|
|
26
19
|
|
|
27
20
|
</details>
|
|
28
21
|
|
|
29
|
-
## 🌻 Synopsis
|
|
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>
|
|
30
23
|
|
|
31
|
-
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.
|
|
32
25
|
|
|
33
26
|
### Key Features
|
|
34
27
|
|
|
@@ -37,7 +30,9 @@ Dotenv::Merge is a standalone Ruby module that intelligently merges two versions
|
|
|
37
30
|
- **Comment-Preserving**: Comments and blank lines are preserved in their context
|
|
38
31
|
- **Freeze Block Support**: Respects freeze markers (default: `dotenv-merge:freeze` / `dotenv-merge:unfreeze`) for merge control - customizable to match your project's conventions
|
|
39
32
|
- **Full Provenance**: Tracks origin of every line
|
|
40
|
-
- **
|
|
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.
|
|
41
36
|
- **Customizable**:
|
|
42
37
|
- `signature_generator` - callable custom signature generators
|
|
43
38
|
- `preference` - setting of `:template`, `:destination`, or a Hash for per-node-type preferences
|
|
@@ -71,211 +66,48 @@ result = merger.merge
|
|
|
71
66
|
File.write("merged.env", result.to_s)
|
|
72
67
|
```
|
|
73
68
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
| Gem | Version / CI | Language<br>/ Format | Parser Backend(s) | Description |
|
|
79
|
-
|------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------:|----------------------|-------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|
|
|
80
|
-
| [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) |
|
|
81
|
-
| [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 |
|
|
82
|
-
| [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 |
|
|
83
|
-
| [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) |
|
|
84
|
-
| [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 |
|
|
85
|
-
| [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 |
|
|
86
|
-
| [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 |
|
|
87
|
-
| [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 |
|
|
88
|
-
| [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) |
|
|
89
|
-
| [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 |
|
|
90
|
-
| [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 |
|
|
91
|
-
| [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 |
|
|
92
|
-
| [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 |
|
|
93
|
-
|
|
94
|
-
#### Backend Platform Compatibility
|
|
95
|
-
|
|
96
|
-
tree_haver supports multiple parsing backends, but not all backends work on all Ruby platforms:
|
|
97
|
-
|
|
98
|
-
| Platform 👉️<br> TreeHaver Backend 👇️ | MRI | JRuby | TruffleRuby | Notes |
|
|
99
|
-
|-------------------------------------------------|:---:|:-----:|:-----------:|----------------------------------------------------------------------------|
|
|
100
|
-
| **MRI** ([ruby_tree_sitter][ruby_tree_sitter]) | ✅ | ❌ | ❌ | C extension, MRI only |
|
|
101
|
-
| **Rust** ([tree_stump][tree_stump]) | ✅ | ❌ | ❌ | Rust extension via magnus/rb-sys, MRI only |
|
|
102
|
-
| **FFI** ([ffi][ffi]) | ✅ | ✅ | ❌ | TruffleRuby's FFI doesn't support `STRUCT_BY_VALUE` |
|
|
103
|
-
| **Java** ([jtreesitter][jtreesitter]) | ❌ | ✅ | ❌ | JRuby only, requires grammar JARs |
|
|
104
|
-
| **Prism** ([prism][prism]) | ✅ | ✅ | ✅ | Ruby parsing, stdlib in Ruby 3.4+ |
|
|
105
|
-
| **Psych** ([psych][psych]) | ✅ | ✅ | ✅ | YAML parsing, stdlib |
|
|
106
|
-
| **Citrus** ([citrus][citrus]) | ✅ | ✅ | ✅ | Pure Ruby PEG parser, no native dependencies |
|
|
107
|
-
| **Parslet** ([parslet][parslet]) | ✅ | ✅ | ✅ | Pure Ruby PEG parser, no native dependencies |
|
|
108
|
-
| **Commonmarker** ([commonmarker][commonmarker]) | ✅ | ❌ | ❓ | Rust extension for Markdown (via [commonmarker-merge][commonmarker-merge]) |
|
|
109
|
-
| **Markly** ([markly][markly]) | ✅ | ❌ | ❓ | C extension for Markdown (via [markly-merge][markly-merge]) |
|
|
110
|
-
|
|
111
|
-
**Legend**: ✅ = Works, ❌ = Does not work, ❓ = Untested
|
|
112
|
-
|
|
113
|
-
**Why some backends don't work on certain platforms**:
|
|
114
|
-
|
|
115
|
-
- **JRuby**: Runs on the JVM; cannot load native C/Rust extensions (`.so` files)
|
|
116
|
-
- **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`)
|
|
117
|
-
- **FFI on TruffleRuby**: TruffleRuby's FFI implementation doesn't support returning structs by value, which tree-sitter's C API requires
|
|
118
|
-
|
|
119
|
-
**Example implementations** for the gem templating use case:
|
|
120
|
-
|
|
121
|
-
| Gem | Purpose | Description |
|
|
122
|
-
|--------------------------|-----------------|-----------------------------------------------|
|
|
123
|
-
| [kettle-dev][kettle-dev] | Gem Development | Gem templating tool using `*-merge` gems |
|
|
124
|
-
| [kettle-jem][kettle-jem] | Gem Templating | Gem template library with smart merge support |
|
|
125
|
-
|
|
126
|
-
[tree_haver]: https://github.com/kettle-rb/tree_haver
|
|
127
|
-
[ast-merge]: https://github.com/kettle-rb/ast-merge
|
|
128
|
-
[prism-merge]: https://github.com/kettle-rb/prism-merge
|
|
129
|
-
[psych-merge]: https://github.com/kettle-rb/psych-merge
|
|
130
|
-
[json-merge]: https://github.com/kettle-rb/json-merge
|
|
131
|
-
[jsonc-merge]: https://github.com/kettle-rb/jsonc-merge
|
|
132
|
-
[bash-merge]: https://github.com/kettle-rb/bash-merge
|
|
133
|
-
[rbs-merge]: https://github.com/kettle-rb/rbs-merge
|
|
134
|
-
[dotenv-merge]: https://github.com/kettle-rb/dotenv-merge
|
|
135
|
-
[toml-merge]: https://github.com/kettle-rb/toml-merge
|
|
136
|
-
[markdown-merge]: https://github.com/kettle-rb/markdown-merge
|
|
137
|
-
[markly-merge]: https://github.com/kettle-rb/markly-merge
|
|
138
|
-
[commonmarker-merge]: https://github.com/kettle-rb/commonmarker-merge
|
|
139
|
-
[kettle-dev]: https://github.com/kettle-rb/kettle-dev
|
|
140
|
-
[kettle-jem]: https://github.com/kettle-rb/kettle-jem
|
|
141
|
-
[tree_haver-gem]: https://bestgems.org/gems/tree_haver
|
|
142
|
-
[ast-merge-gem]: https://bestgems.org/gems/ast-merge
|
|
143
|
-
[prism-merge-gem]: https://bestgems.org/gems/prism-merge
|
|
144
|
-
[psych-merge-gem]: https://bestgems.org/gems/psych-merge
|
|
145
|
-
[json-merge-gem]: https://bestgems.org/gems/json-merge
|
|
146
|
-
[jsonc-merge-gem]: https://bestgems.org/gems/jsonc-merge
|
|
147
|
-
[bash-merge-gem]: https://bestgems.org/gems/bash-merge
|
|
148
|
-
[rbs-merge-gem]: https://bestgems.org/gems/rbs-merge
|
|
149
|
-
[dotenv-merge-gem]: https://bestgems.org/gems/dotenv-merge
|
|
150
|
-
[toml-merge-gem]: https://bestgems.org/gems/toml-merge
|
|
151
|
-
[markdown-merge-gem]: https://bestgems.org/gems/markdown-merge
|
|
152
|
-
[markly-merge-gem]: https://bestgems.org/gems/markly-merge
|
|
153
|
-
[commonmarker-merge-gem]: https://bestgems.org/gems/commonmarker-merge
|
|
154
|
-
[kettle-dev-gem]: https://bestgems.org/gems/kettle-dev
|
|
155
|
-
[kettle-jem-gem]: https://bestgems.org/gems/kettle-jem
|
|
156
|
-
[tree_haver-gem-i]: https://img.shields.io/gem/v/tree_haver.svg
|
|
157
|
-
[ast-merge-gem-i]: https://img.shields.io/gem/v/ast-merge.svg
|
|
158
|
-
[prism-merge-gem-i]: https://img.shields.io/gem/v/prism-merge.svg
|
|
159
|
-
[psych-merge-gem-i]: https://img.shields.io/gem/v/psych-merge.svg
|
|
160
|
-
[json-merge-gem-i]: https://img.shields.io/gem/v/json-merge.svg
|
|
161
|
-
[jsonc-merge-gem-i]: https://img.shields.io/gem/v/jsonc-merge.svg
|
|
162
|
-
[bash-merge-gem-i]: https://img.shields.io/gem/v/bash-merge.svg
|
|
163
|
-
[rbs-merge-gem-i]: https://img.shields.io/gem/v/rbs-merge.svg
|
|
164
|
-
[dotenv-merge-gem-i]: https://img.shields.io/gem/v/dotenv-merge.svg
|
|
165
|
-
[toml-merge-gem-i]: https://img.shields.io/gem/v/toml-merge.svg
|
|
166
|
-
[markdown-merge-gem-i]: https://img.shields.io/gem/v/markdown-merge.svg
|
|
167
|
-
[markly-merge-gem-i]: https://img.shields.io/gem/v/markly-merge.svg
|
|
168
|
-
[commonmarker-merge-gem-i]: https://img.shields.io/gem/v/commonmarker-merge.svg
|
|
169
|
-
[kettle-dev-gem-i]: https://img.shields.io/gem/v/kettle-dev.svg
|
|
170
|
-
[kettle-jem-gem-i]: https://img.shields.io/gem/v/kettle-jem.svg
|
|
171
|
-
[tree_haver-ci-i]: https://github.com/kettle-rb/tree_haver/actions/workflows/current.yml/badge.svg
|
|
172
|
-
[ast-merge-ci-i]: https://github.com/kettle-rb/ast-merge/actions/workflows/current.yml/badge.svg
|
|
173
|
-
[prism-merge-ci-i]: https://github.com/kettle-rb/prism-merge/actions/workflows/current.yml/badge.svg
|
|
174
|
-
[psych-merge-ci-i]: https://github.com/kettle-rb/psych-merge/actions/workflows/current.yml/badge.svg
|
|
175
|
-
[json-merge-ci-i]: https://github.com/kettle-rb/json-merge/actions/workflows/current.yml/badge.svg
|
|
176
|
-
[jsonc-merge-ci-i]: https://github.com/kettle-rb/jsonc-merge/actions/workflows/current.yml/badge.svg
|
|
177
|
-
[bash-merge-ci-i]: https://github.com/kettle-rb/bash-merge/actions/workflows/current.yml/badge.svg
|
|
178
|
-
[rbs-merge-ci-i]: https://github.com/kettle-rb/rbs-merge/actions/workflows/current.yml/badge.svg
|
|
179
|
-
[dotenv-merge-ci-i]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml/badge.svg
|
|
180
|
-
[toml-merge-ci-i]: https://github.com/kettle-rb/toml-merge/actions/workflows/current.yml/badge.svg
|
|
181
|
-
[markdown-merge-ci-i]: https://github.com/kettle-rb/markdown-merge/actions/workflows/current.yml/badge.svg
|
|
182
|
-
[markly-merge-ci-i]: https://github.com/kettle-rb/markly-merge/actions/workflows/current.yml/badge.svg
|
|
183
|
-
[commonmarker-merge-ci-i]: https://github.com/kettle-rb/commonmarker-merge/actions/workflows/current.yml/badge.svg
|
|
184
|
-
[kettle-dev-ci-i]: https://github.com/kettle-rb/kettle-dev/actions/workflows/current.yml/badge.svg
|
|
185
|
-
[kettle-jem-ci-i]: https://github.com/kettle-rb/kettle-jem/actions/workflows/current.yml/badge.svg
|
|
186
|
-
[tree_haver-ci]: https://github.com/kettle-rb/tree_haver/actions/workflows/current.yml
|
|
187
|
-
[ast-merge-ci]: https://github.com/kettle-rb/ast-merge/actions/workflows/current.yml
|
|
188
|
-
[prism-merge-ci]: https://github.com/kettle-rb/prism-merge/actions/workflows/current.yml
|
|
189
|
-
[psych-merge-ci]: https://github.com/kettle-rb/psych-merge/actions/workflows/current.yml
|
|
190
|
-
[json-merge-ci]: https://github.com/kettle-rb/json-merge/actions/workflows/current.yml
|
|
191
|
-
[jsonc-merge-ci]: https://github.com/kettle-rb/jsonc-merge/actions/workflows/current.yml
|
|
192
|
-
[bash-merge-ci]: https://github.com/kettle-rb/bash-merge/actions/workflows/current.yml
|
|
193
|
-
[rbs-merge-ci]: https://github.com/kettle-rb/rbs-merge/actions/workflows/current.yml
|
|
194
|
-
[dotenv-merge-ci]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml
|
|
195
|
-
[toml-merge-ci]: https://github.com/kettle-rb/toml-merge/actions/workflows/current.yml
|
|
196
|
-
[markdown-merge-ci]: https://github.com/kettle-rb/markdown-merge/actions/workflows/current.yml
|
|
197
|
-
[markly-merge-ci]: https://github.com/kettle-rb/markly-merge/actions/workflows/current.yml
|
|
198
|
-
[commonmarker-merge-ci]: https://github.com/kettle-rb/commonmarker-merge/actions/workflows/current.yml
|
|
199
|
-
[kettle-dev-ci]: https://github.com/kettle-rb/kettle-dev/actions/workflows/current.yml
|
|
200
|
-
[kettle-jem-ci]: https://github.com/kettle-rb/kettle-jem/actions/workflows/current.yml
|
|
201
|
-
[prism]: https://github.com/ruby/prism
|
|
202
|
-
[psych]: https://github.com/ruby/psych
|
|
203
|
-
[ffi]: https://github.com/ffi/ffi
|
|
204
|
-
[ts-json]: https://github.com/tree-sitter/tree-sitter-json
|
|
205
|
-
[ts-jsonc]: https://gitlab.com/WhyNotHugo/tree-sitter-jsonc
|
|
206
|
-
[ts-bash]: https://github.com/tree-sitter/tree-sitter-bash
|
|
207
|
-
[ts-rbs]: https://github.com/joker1007/tree-sitter-rbs
|
|
208
|
-
[ts-toml]: https://github.com/tree-sitter-grammars/tree-sitter-toml
|
|
209
|
-
[dotenv]: https://github.com/bkeepers/dotenv
|
|
210
|
-
[rbs]: https://github.com/ruby/rbs
|
|
211
|
-
[toml-rb]: https://github.com/emancu/toml-rb
|
|
212
|
-
[toml]: https://github.com/jm/toml
|
|
213
|
-
[markly]: https://github.com/ioquatix/markly
|
|
214
|
-
[commonmarker]: https://github.com/gjtorikian/commonmarker
|
|
215
|
-
[ruby_tree_sitter]: https://github.com/Faveod/ruby-tree-sitter
|
|
216
|
-
[tree_stump]: https://github.com/joker1007/tree_stump
|
|
217
|
-
[jtreesitter]: https://central.sonatype.com/artifact/io.github.tree-sitter/jtreesitter
|
|
218
|
-
[citrus]: https://github.com/mjackson/citrus
|
|
219
|
-
[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
|
|
220
72
|
|
|
221
73
|
## 💡 Info you can shake a stick at
|
|
222
74
|
|
|
223
|
-
| Tokens to Remember
|
|
224
|
-
|
|
225
|
-
| Works with
|
|
226
|
-
|
|
|
227
|
-
|
|
|
228
|
-
|
|
|
229
|
-
|
|
|
230
|
-
|
|
|
231
|
-
|
|
|
232
|
-
|
|
|
233
|
-
| 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] |
|
|
234
|
-
| `...` 💖 | [![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] |
|
|
235
85
|
|
|
236
86
|
### Compatibility
|
|
237
87
|
|
|
238
|
-
Compatible with MRI Ruby
|
|
88
|
+
Compatible with MRI Ruby 4.0.0+, 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.
|
|
239
93
|
|
|
240
|
-
|
|
241
|
-
|------------------------------------------------|--------------------------------------------------------|
|
|
242
|
-
| 👟 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>
|
|
243
95
|
|
|
244
|
-
|
|
96
|
+
The _amazing_ test matrix is powered by the kettle-dev stack.
|
|
245
97
|
|
|
246
98
|
<details markdown="1">
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
|
250
|
-
|
|
251
|
-
|
|
|
252
|
-
|
|
|
253
|
-
|
|
|
254
|
-
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
[
|
|
259
|
-
|
|
260
|
-
### Enterprise Support [][🏙️entsup-tidelift]
|
|
261
|
-
|
|
262
|
-
Available as part of the Tidelift Subscription.
|
|
263
|
-
|
|
264
|
-
<details markdown="1">
|
|
265
|
-
<summary>Need enterprise-level guarantees?</summary>
|
|
266
|
-
|
|
267
|
-
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.
|
|
268
|
-
|
|
269
|
-
[![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]
|
|
270
|
-
|
|
271
|
-
- 💡Subscribe for support guarantees covering *all* your FLOSS dependencies
|
|
272
|
-
- 💡Tidelift is part of [Sonar][🏙️entsup-tidelift-sonar]
|
|
273
|
-
- 💡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
|
|
274
|
-
Alternatively:
|
|
275
|
-
|
|
276
|
-
- [![Live Chat on Discord][✉️discord-invite-img-ftb]][🖼️galtzo-discord]
|
|
277
|
-
- [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork]
|
|
278
|
-
- [![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) |
|
|
279
111
|
|
|
280
112
|
</details>
|
|
281
113
|
|
|
@@ -293,41 +125,6 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
293
125
|
gem install dotenv-merge
|
|
294
126
|
```
|
|
295
127
|
|
|
296
|
-
### 🔒 Secure Installation
|
|
297
|
-
|
|
298
|
-
<details markdown="1">
|
|
299
|
-
<summary>For Medium or High Security Installations</summary>
|
|
300
|
-
|
|
301
|
-
This gem is cryptographically signed, and has verifiable [SHA-256 and SHA-512][💎SHA_checksums] checksums by
|
|
302
|
-
[stone\_checksums][💎stone_checksums]. Be sure the gem you install hasn’t been tampered with
|
|
303
|
-
by following the instructions below.
|
|
304
|
-
|
|
305
|
-
Add my public key (if you haven’t already, expires 2045-04-29) as a trusted certificate:
|
|
306
|
-
|
|
307
|
-
```console
|
|
308
|
-
gem cert --add <(curl -Ls https://raw.github.com/galtzo-floss/certs/main/pboling.pem)
|
|
309
|
-
```
|
|
310
|
-
|
|
311
|
-
You only need to do that once. Then proceed to install with:
|
|
312
|
-
|
|
313
|
-
```console
|
|
314
|
-
gem install dotenv-merge -P HighSecurity
|
|
315
|
-
```
|
|
316
|
-
|
|
317
|
-
The `HighSecurity` trust profile will verify signed gems, and not allow the installation of unsigned dependencies.
|
|
318
|
-
|
|
319
|
-
If you want to up your security game full-time:
|
|
320
|
-
|
|
321
|
-
```console
|
|
322
|
-
bundle config set --global trust-policy MediumSecurity
|
|
323
|
-
```
|
|
324
|
-
|
|
325
|
-
`MediumSecurity` instead of `HighSecurity` is necessary if not all the gems you use are signed.
|
|
326
|
-
|
|
327
|
-
NOTE: Be prepared to track down certs for signed gems and add them the same way you added mine.
|
|
328
|
-
|
|
329
|
-
</details>
|
|
330
|
-
|
|
331
128
|
## ⚙️ Configuration
|
|
332
129
|
|
|
333
130
|
```ruby
|
|
@@ -419,63 +216,6 @@ result = merger.merge
|
|
|
419
216
|
# Result includes DATABASE_URL from destination + NEW_FEATURE_FLAG from template
|
|
420
217
|
```
|
|
421
218
|
|
|
422
|
-
## 🦷 FLOSS Funding
|
|
423
|
-
|
|
424
|
-
While kettle-rb tools are free software and will always be, the project would benefit immensely from some funding.
|
|
425
|
-
Raising a monthly budget of... "dollars" would make the project more sustainable.
|
|
426
|
-
|
|
427
|
-
We welcome both individual and corporate sponsors\! We also offer a
|
|
428
|
-
wide array of funding channels to account for your preferences
|
|
429
|
-
(although currently [Open Collective][🖇osc] is our preferred funding platform).
|
|
430
|
-
|
|
431
|
-
**If you're working in a company that's making significant use of kettle-rb tools we'd
|
|
432
|
-
appreciate it if you suggest to your company to become a kettle-rb sponsor.**
|
|
433
|
-
|
|
434
|
-
You can support the development of kettle-rb tools via
|
|
435
|
-
[GitHub Sponsors][🖇sponsor],
|
|
436
|
-
[Liberapay][⛳liberapay],
|
|
437
|
-
[PayPal][🖇paypal],
|
|
438
|
-
[Open Collective][🖇osc]
|
|
439
|
-
and [Tidelift][🏙️entsup-tidelift].
|
|
440
|
-
|
|
441
|
-
| 📍 NOTE |
|
|
442
|
-
| --- |
|
|
443
|
-
| 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. |
|
|
444
|
-
|
|
445
|
-
### Open Collective for Individuals
|
|
446
|
-
|
|
447
|
-
Support us with a monthly donation and help us continue our activities. \[[Become a backer][🖇osc-backers]\]
|
|
448
|
-
|
|
449
|
-
NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day, automatically.
|
|
450
|
-
|
|
451
|
-
<!-- OPENCOLLECTIVE-INDIVIDUALS:START -->
|
|
452
|
-
No backers yet. Be the first!
|
|
453
|
-
<!-- OPENCOLLECTIVE-INDIVIDUALS:END -->
|
|
454
|
-
|
|
455
|
-
### Open Collective for Organizations
|
|
456
|
-
|
|
457
|
-
Become a sponsor and get your logo on our README on GitHub with a link to your site. \[[Become a sponsor][🖇osc-sponsors]\]
|
|
458
|
-
|
|
459
|
-
NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day, automatically.
|
|
460
|
-
|
|
461
|
-
<!-- OPENCOLLECTIVE-ORGANIZATIONS:START -->
|
|
462
|
-
No sponsors yet. Be the first!
|
|
463
|
-
<!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
|
|
464
|
-
|
|
465
|
-
[kettle-readme-backers]: https://github.com/kettle-rb/dotenv-merge/blob/main/exe/kettle-readme-backers
|
|
466
|
-
|
|
467
|
-
### Another way to support open-source
|
|
468
|
-
|
|
469
|
-
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).
|
|
470
|
-
|
|
471
|
-
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`.
|
|
472
|
-
|
|
473
|
-
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.
|
|
474
|
-
|
|
475
|
-
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
|
476
|
-
|
|
477
|
-
[![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]
|
|
478
|
-
|
|
479
219
|
## 🔐 Security
|
|
480
220
|
|
|
481
221
|
See [SECURITY.md][🔐security].
|
|
@@ -483,78 +223,28 @@ See [SECURITY.md][🔐security].
|
|
|
483
223
|
## 🤝 Contributing
|
|
484
224
|
|
|
485
225
|
If you need some ideas of where to help, you could work on adding more code coverage,
|
|
486
|
-
|
|
487
|
-
or use the gem and think about how it could be better.
|
|
226
|
+
check [issues][🤝gh-issues] or [PRs][🤝gh-pulls], or use the gem and think about how it could be better.
|
|
488
227
|
|
|
489
228
|
We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
|
|
490
229
|
|
|
491
230
|
See [CONTRIBUTING.md][🤝contributing] for more detailed instructions.
|
|
492
231
|
|
|
493
|
-
### 🚀 Release Instructions
|
|
494
|
-
|
|
495
|
-
See [CONTRIBUTING.md][🤝contributing].
|
|
496
|
-
|
|
497
|
-
### Code Coverage
|
|
498
|
-
|
|
499
|
-
[![Coverage Graph][🏀codecov-g]][🏀codecov]
|
|
500
|
-
|
|
501
|
-
[![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls]
|
|
502
|
-
|
|
503
|
-
[![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov]
|
|
504
|
-
|
|
505
|
-
### 🪇 Code of Conduct
|
|
506
|
-
|
|
507
|
-
Everyone interacting with this project's codebases, issue trackers,
|
|
508
|
-
chat rooms and mailing lists agrees to follow the [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct].
|
|
509
|
-
|
|
510
|
-
## 🌈 Contributors
|
|
511
|
-
|
|
512
|
-
[![Contributors][🖐contributors-img]][🖐contributors]
|
|
513
|
-
|
|
514
|
-
Made with [contributors-img][🖐contrib-rocks].
|
|
515
|
-
|
|
516
|
-
Also see GitLab Contributors: <https://gitlab.com/kettle-rb/dotenv-merge/-/graphs/main>
|
|
517
|
-
|
|
518
|
-
<details>
|
|
519
|
-
<summary>⭐️ Star History</summary>
|
|
520
|
-
|
|
521
|
-
<a href="https://star-history.com/#kettle-rb/dotenv-merge&Date">
|
|
522
|
-
<picture>
|
|
523
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date&theme=dark" />
|
|
524
|
-
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date" />
|
|
525
|
-
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=kettle-rb/dotenv-merge&type=Date" />
|
|
526
|
-
</picture>
|
|
527
|
-
</a>
|
|
528
|
-
|
|
529
|
-
</details>
|
|
530
|
-
|
|
531
232
|
## 📌 Versioning
|
|
532
233
|
|
|
533
|
-
This
|
|
534
|
-
|
|
535
|
-
Specifically, if a minor or patch version is released that breaks backward compatibility,
|
|
536
|
-
a new version should be immediately released that restores compatibility.
|
|
537
|
-
Breaking changes to the public API will only be introduced with new major versions.
|
|
538
|
-
|
|
539
|
-
> dropping support for a platform is both obviously and objectively a breaking change <br/>
|
|
540
|
-
> —Jordan Harband ([@ljharb](https://github.com/ljharb), maintainer of SemVer) [in SemVer issue 716][📌semver-breaking]
|
|
541
|
-
|
|
542
|
-
I understand that policy doesn't work universally ("exceptions to every rule\!"),
|
|
543
|
-
but it is the policy here.
|
|
544
|
-
As such, in many cases it is good to specify a dependency on this library using
|
|
545
|
-
the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
|
|
234
|
+
This library follows [![Semantic Versioning 2.0.0][📌semver-img]][📌semver] for its public API where practical.
|
|
235
|
+
For most applications, prefer the [Pessimistic Version Constraint][📌pvc] with two digits of precision.
|
|
546
236
|
|
|
547
237
|
For example:
|
|
548
238
|
|
|
549
239
|
```ruby
|
|
550
|
-
spec.add_dependency("dotenv-merge", "~>
|
|
240
|
+
spec.add_dependency("dotenv-merge", "~> 7.0")
|
|
551
241
|
```
|
|
552
242
|
|
|
553
243
|
<details markdown="1">
|
|
554
244
|
<summary>📌 Is "Platform Support" part of the public API? More details inside.</summary>
|
|
555
245
|
|
|
556
|
-
|
|
557
|
-
|
|
246
|
+
Dropping support for a platform can be a breaking change for affected users.
|
|
247
|
+
If a release changes supported platforms, it should be called out clearly in the changelog and versioned with that impact in mind.
|
|
558
248
|
|
|
559
249
|
To get a better understanding of how SemVer is intended to work over a project's lifetime,
|
|
560
250
|
read this article from the creator of SemVer:
|
|
@@ -567,68 +257,19 @@ See [CHANGELOG.md][📌changelog] for a list of releases.
|
|
|
567
257
|
|
|
568
258
|
## 📄 License
|
|
569
259
|
|
|
570
|
-
The gem is available
|
|
571
|
-
|
|
572
|
-
See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright-notice-explainer].
|
|
573
|
-
|
|
574
|
-
### © Copyright
|
|
575
|
-
|
|
576
|
-
<ul>
|
|
577
|
-
<li>
|
|
578
|
-
Copyright (c) 2025-2026 Peter H. Boling, of
|
|
579
|
-
<a href="https://discord.gg/3qme4XHNKN">
|
|
580
|
-
Galtzo.com
|
|
581
|
-
<picture>
|
|
582
|
-
<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">
|
|
583
|
-
</picture>
|
|
584
|
-
</a>, and dotenv-merge contributors.
|
|
585
|
-
</li>
|
|
586
|
-
</ul>
|
|
587
|
-
|
|
588
|
-
## 🤑 A request for help
|
|
589
|
-
|
|
590
|
-
Maintainers have teeth and need to pay their dentists.
|
|
591
|
-
After getting laid off in an RIF in March, and encountering difficulty finding a new one,
|
|
592
|
-
I began spending most of my time building open source tools.
|
|
593
|
-
I'm hoping to be able to pay for my kids' health insurance this month,
|
|
594
|
-
so if you value the work I am doing, I need your support.
|
|
595
|
-
Please consider sponsoring me or the project.
|
|
596
|
-
|
|
597
|
-
To join the community or get help 👇️ Join the Discord.
|
|
598
|
-
|
|
599
|
-
[![Live Chat on Discord][✉️discord-invite-img-ftb]][🖼️galtzo-discord]
|
|
600
|
-
|
|
601
|
-
To say "thanks\!" ☝️ Join the Discord or 👇️ send money.
|
|
602
|
-
|
|
603
|
-
[![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]
|
|
604
|
-
|
|
605
|
-
### Please give the project a star ⭐ ♥.
|
|
260
|
+
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).
|
|
261
|
+
See [LICENSE.md][📄license] for details.
|
|
606
262
|
|
|
607
|
-
|
|
263
|
+
If none of the available licenses suit your use case, please [contact us](mailto:floss@galtzo.com) to discuss a custom commercial license.
|
|
608
264
|
|
|
609
265
|
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
|
610
266
|
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
|
611
267
|
[⛳liberapay]: https://liberapay.com/pboling/donate
|
|
612
|
-
[🖇osc-all-img]: https://img.shields.io/opencollective/all/kettle-rb
|
|
613
|
-
[🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/kettle-rb
|
|
614
|
-
[🖇osc-backers-img]: https://img.shields.io/opencollective/backers/kettle-rb
|
|
615
|
-
[🖇osc-backers]: https://opencollective.com/kettle-rb#backer
|
|
616
|
-
[🖇osc-backers-i]: https://opencollective.com/kettle-rb/backers/badge.svg?style=flat
|
|
617
|
-
[🖇osc-sponsors]: https://opencollective.com/kettle-rb#sponsor
|
|
618
|
-
[🖇osc-sponsors-i]: https://opencollective.com/kettle-rb/sponsors/badge.svg?style=flat
|
|
619
|
-
[🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/kettle-rb?style=for-the-badge
|
|
620
|
-
[🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/kettle-rb?style=for-the-badge
|
|
621
|
-
[🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/kettle-rb?style=for-the-badge
|
|
622
|
-
[🖇osc]: https://opencollective.com/kettle-rb
|
|
623
268
|
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
|
624
269
|
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
|
625
270
|
[🖇sponsor]: https://github.com/sponsors/pboling
|
|
626
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
|
627
|
-
[🖇polar]: https://polar.sh/pboling
|
|
628
271
|
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
|
629
|
-
[🖇kofi]: https://ko-fi.com/
|
|
630
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
|
631
|
-
[🖇patreon]: https://patreon.com/galtzo
|
|
272
|
+
[🖇kofi]: https://ko-fi.com/pboling
|
|
632
273
|
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
|
633
274
|
[🖇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
|
|
634
275
|
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
|
@@ -641,19 +282,22 @@ Thanks for RTFM. ☺️
|
|
|
641
282
|
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge&logo=discord
|
|
642
283
|
[✉️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
|
|
643
284
|
[✉️ruby-friends]: https://app.daily.dev/squads/rubyfriends
|
|
285
|
+
[✉️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
|
|
286
|
+
[✉️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
|
|
287
|
+
[✉️ruby-forum]: https://www.rubyforum.org/tag/structuredmerge
|
|
644
288
|
[✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
|
|
645
|
-
[⛳️gem-namespace]: https://github.com/
|
|
289
|
+
[⛳️gem-namespace]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/dotenv-merge
|
|
646
290
|
[⛳️namespace-img]: https://img.shields.io/badge/namespace-Dotenv::Merge-3C2D2D.svg?style=square&logo=ruby&logoColor=white
|
|
647
|
-
[⛳️gem-name]: https://
|
|
291
|
+
[⛳️gem-name]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
648
292
|
[⛳️name-img]: https://img.shields.io/badge/name-dotenv--merge-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
|
|
649
|
-
[⛳️tag-img]: https://img.shields.io/github/tag/
|
|
650
|
-
[⛳️tag]:
|
|
293
|
+
[⛳️tag-img]: https://img.shields.io/github/tag/structuredmerge/structuredmerge-ruby.svg
|
|
294
|
+
[⛳️tag]: https://github.com/structuredmerge/structuredmerge-ruby/releases
|
|
651
295
|
[🚂maint-blog]: http://www.railsbling.com/tags/dotenv-merge
|
|
652
296
|
[🚂maint-blog-img]: https://img.shields.io/badge/blog-railsbling-0093D0.svg?style=for-the-badge&logo=rubyonrails&logoColor=orange
|
|
653
297
|
[🚂maint-contact]: http://www.railsbling.com/contact
|
|
654
298
|
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
|
655
299
|
[💖🖇linkedin]: http://www.linkedin.com/in/peterboling
|
|
656
|
-
[💖🖇linkedin-img]: https://img.shields.io/badge/
|
|
300
|
+
[💖🖇linkedin-img]: https://img.shields.io/badge/LinkedIn-Profile-0B66C2?style=flat&logo=newjapanprowrestling
|
|
657
301
|
[💖✌️wellfound]: https://wellfound.com/u/peter-boling
|
|
658
302
|
[💖✌️wellfound-img]: https://img.shields.io/badge/peter--boling-orange?style=flat&logo=wellfound
|
|
659
303
|
[💖💲crunchbase]: https://www.crunchbase.com/person/peter-boling
|
|
@@ -682,103 +326,63 @@ Thanks for RTFM. ☺️
|
|
|
682
326
|
[💁🏼♂️peterboling]: http://www.peterboling.com
|
|
683
327
|
[🚂railsbling]: http://www.railsbling.com
|
|
684
328
|
[📜src-gl-img]: https://img.shields.io/badge/GitLab-FBA326?style=for-the-badge&logo=Gitlab&logoColor=orange
|
|
685
|
-
[📜src-gl]: https://gitlab.com/
|
|
329
|
+
[📜src-gl]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/tree/main/gems/dotenv-merge
|
|
686
330
|
[📜src-cb-img]: https://img.shields.io/badge/CodeBerg-4893CC?style=for-the-badge&logo=CodeBerg&logoColor=blue
|
|
687
|
-
[📜src-cb]: https://codeberg.org/
|
|
688
|
-
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=
|
|
689
|
-
[📜src-gh]: https://github.com/
|
|
331
|
+
[📜src-cb]: https://codeberg.org/structuredmerge/structuredmerge-ruby/src/branch/main/gems/dotenv-merge
|
|
332
|
+
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=GitHub&logoColor=green
|
|
333
|
+
[📜src-gh]: https://github.com/structuredmerge/structuredmerge-ruby/tree/main/gems/dotenv-merge
|
|
690
334
|
[📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
|
691
335
|
[📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
|
692
|
-
[📜gl-wiki]: https://gitlab.com/
|
|
693
|
-
[📜gh-wiki]: https://github.com/
|
|
694
|
-
[📜gl-wiki-img]: https://img.shields.io/badge/wiki-
|
|
695
|
-
[📜gh-wiki-img]: https://img.shields.io/badge/wiki-
|
|
696
|
-
[👽dl-rank]: https://
|
|
697
|
-
[👽dl-ranki]: https://img.shields.io/gem/
|
|
698
|
-
[👽
|
|
699
|
-
[👽oss-helpi]: https://www.codetriage.com/kettle-rb/dotenv-merge/badges/users.svg
|
|
700
|
-
[👽version]: https://bestgems.org/gems/dotenv-merge
|
|
336
|
+
[📜gl-wiki]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/wikis/home
|
|
337
|
+
[📜gh-wiki]: https://github.com/structuredmerge/structuredmerge-ruby/wiki
|
|
338
|
+
[📜gl-wiki-img]: https://img.shields.io/badge/wiki-gitlab-943CD2.svg?style=for-the-badge&logo=gitlab&logoColor=white
|
|
339
|
+
[📜gh-wiki-img]: https://img.shields.io/badge/wiki-github-943CD2.svg?style=for-the-badge&logo=github&logoColor=white
|
|
340
|
+
[👽dl-rank]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
341
|
+
[👽dl-ranki]: https://img.shields.io/gem/dt/dotenv-merge.svg
|
|
342
|
+
[👽version]: https://clickgems.clickhouse.com/dashboard/dotenv-merge
|
|
701
343
|
[👽versioni]: https://img.shields.io/gem/v/dotenv-merge.svg
|
|
702
|
-
[
|
|
703
|
-
[
|
|
704
|
-
[🏀qlty-cov]: https://qlty.sh/gh/kettle-rb/projects/dotenv-merge/metrics/code?sort=coverageRating
|
|
705
|
-
[🏀qlty-covi]: https://qlty.sh/gh/kettle-rb/projects/dotenv-merge/coverage.svg
|
|
706
|
-
[🏀codecov]: https://codecov.io/gh/kettle-rb/dotenv-merge
|
|
707
|
-
[🏀codecovi]: https://codecov.io/gh/kettle-rb/dotenv-merge/graph/badge.svg
|
|
708
|
-
[🏀coveralls]: https://coveralls.io/github/kettle-rb/dotenv-merge?branch=main
|
|
709
|
-
[🏀coveralls-img]: https://coveralls.io/repos/github/kettle-rb/dotenv-merge/badge.svg?branch=main
|
|
710
|
-
[🖐codeQL]: https://github.com/kettle-rb/dotenv-merge/security/code-scanning
|
|
711
|
-
[🖐codeQL-img]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/codeql-analysis.yml/badge.svg
|
|
712
|
-
[🚎2-cov-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/coverage.yml
|
|
713
|
-
[🚎2-cov-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/coverage.yml/badge.svg
|
|
714
|
-
[🚎3-hd-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/heads.yml
|
|
715
|
-
[🚎3-hd-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/heads.yml/badge.svg
|
|
716
|
-
[🚎5-st-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/style.yml
|
|
717
|
-
[🚎5-st-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/style.yml/badge.svg
|
|
718
|
-
[🚎6-s-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/supported.yml
|
|
719
|
-
[🚎6-s-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/supported.yml/badge.svg
|
|
720
|
-
[🚎9-t-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/truffle.yml
|
|
721
|
-
[🚎9-t-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/truffle.yml/badge.svg
|
|
722
|
-
[🚎11-c-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml
|
|
723
|
-
[🚎11-c-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/current.yml/badge.svg
|
|
724
|
-
[🚎12-crh-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/dep-heads.yml
|
|
725
|
-
[🚎12-crh-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/dep-heads.yml/badge.svg
|
|
726
|
-
[🚎13-🔒️-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/locked_deps.yml
|
|
727
|
-
[🚎13-🔒️-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/locked_deps.yml/badge.svg
|
|
728
|
-
[🚎14-🔓️-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/unlocked_deps.yml
|
|
729
|
-
[🚎14-🔓️-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/unlocked_deps.yml/badge.svg
|
|
730
|
-
[🚎15-🪪-wf]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/license-eye.yml
|
|
731
|
-
[🚎15-🪪-wfi]: https://github.com/kettle-rb/dotenv-merge/actions/workflows/license-eye.yml/badge.svg
|
|
732
|
-
[💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
733
|
-
[💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
|
|
344
|
+
[🚎11-c-wf]: https://github.com/structuredmerge/structuredmerge-ruby/actions/workflows/current.yml
|
|
345
|
+
[🚎11-c-wfi]: https://github.com/structuredmerge/structuredmerge-ruby/actions/workflows/current.yml/badge.svg
|
|
734
346
|
[💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
|
|
735
|
-
[
|
|
736
|
-
[
|
|
737
|
-
[
|
|
738
|
-
[
|
|
739
|
-
[
|
|
740
|
-
[
|
|
741
|
-
[🤝gh-issues]: https://github.com/kettle-rb/dotenv-merge/issues
|
|
742
|
-
[🤝gh-pulls]: https://github.com/kettle-rb/dotenv-merge/pulls
|
|
743
|
-
[🤝gl-issues]: https://gitlab.com/kettle-rb/dotenv-merge/-/issues
|
|
744
|
-
[🤝gl-pulls]: https://gitlab.com/kettle-rb/dotenv-merge/-/merge_requests
|
|
745
|
-
[🤝cb-issues]: https://codeberg.org/kettle-rb/dotenv-merge/issues
|
|
746
|
-
[🤝cb-pulls]: https://codeberg.org/kettle-rb/dotenv-merge/pulls
|
|
347
|
+
[🤝gh-issues]: https://github.com/structuredmerge/structuredmerge-ruby/issues
|
|
348
|
+
[🤝gh-pulls]: https://github.com/structuredmerge/structuredmerge-ruby/pulls
|
|
349
|
+
[🤝gl-issues]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/issues
|
|
350
|
+
[🤝gl-pulls]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/merge_requests
|
|
351
|
+
[🤝cb-issues]: https://codeberg.org/structuredmerge/structuredmerge-ruby/issues
|
|
352
|
+
[🤝cb-pulls]: https://codeberg.org/structuredmerge/structuredmerge-ruby/pulls
|
|
747
353
|
[🤝cb-donate]: https://donate.codeberg.org/
|
|
748
|
-
[🤝contributing]: CONTRIBUTING.md
|
|
749
|
-
[🏀codecov-g]: https://codecov.io/gh/kettle-rb/dotenv-merge/graphs/tree.svg
|
|
354
|
+
[🤝contributing]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CONTRIBUTING.md
|
|
750
355
|
[🖐contrib-rocks]: https://contrib.rocks
|
|
751
|
-
[🖐contributors]: https://github.com/
|
|
752
|
-
[🖐contributors-img]: https://contrib.rocks/image?repo=
|
|
753
|
-
[
|
|
754
|
-
[🪇conduct]: CODE_OF_CONDUCT.md
|
|
356
|
+
[🖐contributors]: https://github.com/structuredmerge/structuredmerge-ruby/graphs/contributors
|
|
357
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=structuredmerge/structuredmerge-ruby
|
|
358
|
+
[🪇conduct]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CODE_OF_CONDUCT.md
|
|
755
359
|
[🪇conduct-img]: https://img.shields.io/badge/Contributor_Covenant-2.1-259D6C.svg
|
|
756
360
|
[📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
|
757
361
|
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
758
362
|
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-259D6C.svg?style=flat
|
|
759
363
|
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
760
364
|
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
761
|
-
[📌changelog]: CHANGELOG.md
|
|
365
|
+
[📌changelog]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/CHANGELOG.md
|
|
762
366
|
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
763
367
|
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-34495e.svg?style=flat
|
|
764
368
|
[📌gitmoji]: https://gitmoji.dev
|
|
765
369
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
766
370
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
767
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
768
|
-
[🔐security]: SECURITY.md
|
|
371
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.589-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
372
|
+
[🔐security]: https://github.com/structuredmerge/structuredmerge-ruby/blob/main/SECURITY.md
|
|
769
373
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
770
374
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
771
|
-
[📄license]: LICENSE.
|
|
772
|
-
[📄license-ref]:
|
|
773
|
-
[📄license-img]: https://img.shields.io/badge/License-
|
|
774
|
-
[📄license-compat]: https://
|
|
775
|
-
[📄license-compat-img]: https://img.shields.io/badge/
|
|
375
|
+
[📄license]: LICENSE.md
|
|
376
|
+
[📄license-ref]: LICENSE.md
|
|
377
|
+
[📄license-img]: https://img.shields.io/badge/License-AGPL--3.0--only_OR_PolyForm--Small--Business--1.0.0-259D6C.svg
|
|
378
|
+
[📄license-compat]: https://www.apache.org/legal/resolved.html#category-x
|
|
379
|
+
[📄license-compat-img]: https://img.shields.io/badge/Apache_Incompatible:_Category_X-%E2%9C%97-C0392B.svg?style=flat&logo=Apache
|
|
776
380
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
|
777
381
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
|
778
382
|
[🚎yard-current]: http://rubydoc.info/gems/dotenv-merge
|
|
779
383
|
[🚎yard-head]: https://dotenv-merge.galtzo.com
|
|
780
384
|
[💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
|
|
781
|
-
[💎SHA_checksums]: https://gitlab.com/
|
|
385
|
+
[💎SHA_checksums]: https://gitlab.com/structuredmerge/structuredmerge-ruby/-/tree/main/checksums
|
|
782
386
|
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|
|
783
387
|
[💎rlts-img]: https://img.shields.io/badge/code_style_&_linting-rubocop--lts-34495e.svg?plastic&logo=ruby&logoColor=white
|
|
784
388
|
[💎appraisal2]: https://github.com/appraisal-rb/appraisal2
|