gem_mine 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +14 -1
- data/CONTRIBUTING.md +4 -1
- data/MIT.md +21 -0
- data/lib/gem_mine/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +13 -12
- metadata.gz.sig +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a60443140b747744aa457e674e7f6d79d50dc619a3ab2e0fc2371b30cf38560
|
|
4
|
+
data.tar.gz: e57bf66b49bfa1bcdf30dff8a76de8793a41ffab6cb35ea48750da96703ec661
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a8959e0fa3314a5da89d1cca7542551c7d03b1d5d6ca8408f31c361f01bbecd360a18b20a7c20f9ea97506f28081f567a36e9d095941e0e7ad631e91dc0e717
|
|
7
|
+
data.tar.gz: 90539e47b5bc4b7dfc2f00d4731078bfe5f685b114e0c60603eb9db14b95ffff1816f6ca6972faf73e1b5f9e166a6a246f041a65afa2f2fbaea22f5c76a00b57
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [0.1.2] - 2026-07-01
|
|
34
|
+
|
|
35
|
+
- TAG: [v0.1.2][0.1.2t]
|
|
36
|
+
- COVERAGE: 99.12% -- 113/114 lines in 2 files
|
|
37
|
+
- BRANCH COVERAGE: 90.91% -- 20/22 branches in 2 files
|
|
38
|
+
- 37.21% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- Package configured license files in gem release file lists.
|
|
43
|
+
|
|
33
44
|
## [0.1.1] - 2026-06-23
|
|
34
45
|
|
|
35
46
|
- TAG: [v0.1.1][0.1.1t]
|
|
@@ -71,7 +82,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
71
82
|
git author metadata.
|
|
72
83
|
- Corrected the gemspec public author email to use `floss@galtzo.com`.
|
|
73
84
|
|
|
74
|
-
[Unreleased]: https://github.com/appraisal-rb/gem_mine/compare/v0.1.
|
|
85
|
+
[Unreleased]: https://github.com/appraisal-rb/gem_mine/compare/v0.1.2...HEAD
|
|
86
|
+
[0.1.2]: https://github.com/appraisal-rb/gem_mine/compare/v0.1.1...v0.1.2
|
|
87
|
+
[0.1.2t]: https://github.com/appraisal-rb/gem_mine/releases/tag/v0.1.2
|
|
75
88
|
[0.1.1]: https://github.com/appraisal-rb/gem_mine/compare/v0.1.0...v0.1.1
|
|
76
89
|
[0.1.1t]: https://github.com/appraisal-rb/gem_mine/releases/tag/v0.1.1
|
|
77
90
|
[0.1.0]: https://github.com/appraisal-rb/gem_mine/compare/ee8f9f471c0f1aa5bdb950b17de9f07cdcd25402...v0.1.0
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/lib/gem_mine/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem_mine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter H. Boling
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
version: '2.2'
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 2.2.
|
|
69
|
+
version: 2.2.25
|
|
70
70
|
type: :development
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -76,7 +76,7 @@ dependencies:
|
|
|
76
76
|
version: '2.2'
|
|
77
77
|
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version: 2.2.
|
|
79
|
+
version: 2.2.25
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
81
|
name: bundler-audit
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -154,7 +154,7 @@ dependencies:
|
|
|
154
154
|
version: '2.0'
|
|
155
155
|
- - ">="
|
|
156
156
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: 2.0.
|
|
157
|
+
version: 2.0.9
|
|
158
158
|
type: :development
|
|
159
159
|
prerelease: false
|
|
160
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -164,7 +164,7 @@ dependencies:
|
|
|
164
164
|
version: '2.0'
|
|
165
165
|
- - ">="
|
|
166
166
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 2.0.
|
|
167
|
+
version: 2.0.9
|
|
168
168
|
- !ruby/object:Gem::Dependency
|
|
169
169
|
name: turbo_tests2
|
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -174,7 +174,7 @@ dependencies:
|
|
|
174
174
|
version: '3.1'
|
|
175
175
|
- - ">="
|
|
176
176
|
- !ruby/object:Gem::Version
|
|
177
|
-
version: 3.1.
|
|
177
|
+
version: 3.1.5
|
|
178
178
|
type: :development
|
|
179
179
|
prerelease: false
|
|
180
180
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -184,7 +184,7 @@ dependencies:
|
|
|
184
184
|
version: '3.1'
|
|
185
185
|
- - ">="
|
|
186
186
|
- !ruby/object:Gem::Version
|
|
187
|
-
version: 3.1.
|
|
187
|
+
version: 3.1.5
|
|
188
188
|
- !ruby/object:Gem::Dependency
|
|
189
189
|
name: ruby-progressbar
|
|
190
190
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -208,7 +208,7 @@ dependencies:
|
|
|
208
208
|
version: '1.0'
|
|
209
209
|
- - ">="
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
|
-
version: 1.0.
|
|
211
|
+
version: 1.0.4
|
|
212
212
|
type: :development
|
|
213
213
|
prerelease: false
|
|
214
214
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -218,7 +218,7 @@ dependencies:
|
|
|
218
218
|
version: '1.0'
|
|
219
219
|
- - ">="
|
|
220
220
|
- !ruby/object:Gem::Version
|
|
221
|
-
version: 1.0.
|
|
221
|
+
version: 1.0.4
|
|
222
222
|
- !ruby/object:Gem::Dependency
|
|
223
223
|
name: gitmoji-regex
|
|
224
224
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -262,6 +262,7 @@ files:
|
|
|
262
262
|
- CONTRIBUTING.md
|
|
263
263
|
- FUNDING.md
|
|
264
264
|
- LICENSE.md
|
|
265
|
+
- MIT.md
|
|
265
266
|
- README.md
|
|
266
267
|
- RUBOCOP.md
|
|
267
268
|
- SECURITY.md
|
|
@@ -275,10 +276,10 @@ licenses:
|
|
|
275
276
|
- MIT
|
|
276
277
|
metadata:
|
|
277
278
|
homepage_uri: https://gem-mine.galtzo.com
|
|
278
|
-
source_code_uri: https://github.com/appraisal-rb/gem_mine/tree/v0.1.
|
|
279
|
-
changelog_uri: https://github.com/appraisal-rb/gem_mine/blob/v0.1.
|
|
279
|
+
source_code_uri: https://github.com/appraisal-rb/gem_mine/tree/v0.1.2
|
|
280
|
+
changelog_uri: https://github.com/appraisal-rb/gem_mine/blob/v0.1.2/CHANGELOG.md
|
|
280
281
|
bug_tracker_uri: https://github.com/appraisal-rb/gem_mine/issues
|
|
281
|
-
documentation_uri: https://www.rubydoc.info/gems/gem_mine/0.1.
|
|
282
|
+
documentation_uri: https://www.rubydoc.info/gems/gem_mine/0.1.2
|
|
282
283
|
funding_uri: https://github.com/sponsors/pboling
|
|
283
284
|
wiki_uri: https://github.com/appraisal-rb/gem_mine/wiki
|
|
284
285
|
news_uri: https://www.railsbling.com/tags/gem_mine
|
metadata.gz.sig
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
�5�ǵ��:�Y뤾/_>"��Fm�H4�v}�)Xt��,$Uo���`��P+Զe�;Yĉ�|�Ί�,����c�V�=��dZ���2o���=C�^�Ř랻f+/�q���)��` �mP�\
|
|
2
|
+
�CD�ӌ�xKH��L�K��$�p�l�\���UJ���M!A0�s8���ȉ��:���o&z4��Q�e����l��E�)5�6�����w�J��Ѩw�w��~U��I�r7M��C���w�š�Ӄպ���7��!�\m�)��C:��
|