enum_errors_away 0.1.0 → 0.2.0
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
- data/CHANGELOG.md +13 -1
- data/lib/enum_errors_away/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbe151509078a04c5bacc1ae9e55045862c88bf07667c074819663182978c7e5
|
4
|
+
data.tar.gz: f2636c4810ed920e7788ab77cd4748675488b11dc59e24b507c1fa1862a8b332
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f65d43b1fdd8a378d7b330253fcd7176ede563842ec95966d201095b78c28dfc50eebddad1277e5e649dabfb506a7375072093761d95b39094b027e2269d4a9c
|
7
|
+
data.tar.gz: af65006890e0be05107a1f4304a669f8c293e55584e05311c9d0042b9d6ab09f32d47f27b1da3d9b07da461ec9c58c085d2b4450fe46356290e8bad849976b43
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.2.0] - 2025-10-16
|
4
|
+
|
5
|
+
### Changed
|
6
|
+
|
7
|
+
- Expand files included in the gem by explicitly excluding development and test artifacts (e.g. `test/`, `pkg/`, `dev/`, `log/`, `.github/`) from `spec.files` in the gemspec.
|
8
|
+
- Add common repository files (`Gemfile`, `Rakefile`, `.gitignore`, `.gitattributes`) to the exclusion list to avoid shipping tooling files.
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Update packaging behavior so built gem no longer contains test/dummy or dev-only files.
|
13
|
+
|
3
14
|
## [0.1.0] - 2024-01-01
|
4
15
|
|
5
16
|
### Added
|
17
|
+
|
6
18
|
- Initial release
|
7
19
|
- Automatic suppression of "Undeclared attribute type for enum" errors
|
8
20
|
- Rails railtie for seamless integration
|
9
|
-
- Configuration option to enable/disable the gem
|
21
|
+
- Configuration option to enable/disable the gem
|