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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3109aa3ed90342b1a9efd7021566b58b7d575f160886c5f05485a376e26a1f05
4
- data.tar.gz: 1b47116a202a1adc29105447e351a05e165789cf64d29681ca77471acdd25e25
3
+ metadata.gz: fbe151509078a04c5bacc1ae9e55045862c88bf07667c074819663182978c7e5
4
+ data.tar.gz: f2636c4810ed920e7788ab77cd4748675488b11dc59e24b507c1fa1862a8b332
5
5
  SHA512:
6
- metadata.gz: 6a6329676b1ccda218d1cb2b119eaa8417d53e3017b9dc11575ac24c342894a5f339dbe2da479ba909639df9ed06d470ae7c85a524c030dcf7bdd6522b5f80e5
7
- data.tar.gz: 30aec5078925bb1eff6fb06e85869aa68d9bd1a8904991067b4e08d8d6dc2350343bd7fc4a0c804e9cd21e01452728061af1566f6469cbfdfcb600bf821822d1
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EnumErrorsAway
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enum_errors_away
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sampo Kuokkanen