jpie 0.4.0 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 815bcf1e307d5c5195cf35302381f44f073638c784e6628f893c1eb9e3cb1762
4
- data.tar.gz: 0dd7be88db93f112400c8b1750814f875b79c383e19610622f983e6d7b911793
3
+ metadata.gz: 3b3ade425c9173f2c516edbab70ee2991201648fb15d2e461b58667fda6a46a8
4
+ data.tar.gz: 7783e2e57be4b1a2f7e50fec35240413d873af2e1ab98ba8ed7f8305af272c9e
5
5
  SHA512:
6
- metadata.gz: 2fdbec7a1d41afda8bfce7eb92f7d27feb4a8b73e32ea28a034dc8e1d8a96a8ba5fa7b9ab4396295f669c9a65df46b8f2334c0d1f9cfc93fddffc0085af250cb
7
- data.tar.gz: 701c7e2a064ceecb89820ffcba6241e9c6daf774b422ced235fe173340403f78229c9385a9560e4a52dae7c2226bf8cad31d54e0068acab1480a787e7dbe12e9
6
+ metadata.gz: 582998bde4d3fc2b44c280a8a4e87e45477bd66f808790c07a90f7110ca405b7e4695f4c306280fdd8a85b4bf36d4f1413b55a542c40d96a340d828ff2aaf2b2
7
+ data.tar.gz: 63d5d8f010159cb9aff0bcc99a5c8f5739c5d879b62611e980eb0c3ca0312ef02f31d550bfb14b5cbee0d0978c236fe28beb0df79a1006178c429c04d1457aa6
@@ -22,7 +22,7 @@
22
22
  # Git commit guidelines
23
23
  - Write clear, descriptive commit messages
24
24
  - Keep commits focused and atomic
25
- - Run tests before committing
25
+ - Run and pass tests before committing
26
26
  - Update documentation in the same commit as code changes
27
27
  - Ignore spec/examples.txt and other files listed in .gitignore
28
28
  - Include Ruby/Rails version requirements in relevant commits
@@ -62,4 +62,16 @@
62
62
  # When implementing new features or refactoring
63
63
  - Always read the .aiconfig file
64
64
  - Always implement code slowly and methodically
65
- - Always test as you go
65
+ - Always test as you go
66
+ - Always make sure rubocop passes
67
+
68
+ # Examples
69
+ - The examples must _only_ include _required_ code
70
+ - The examples must not include any unrelated or supurflous code
71
+ - Examples must be a single markdown file
72
+ - Examples must use the `http` code blocks for its exampels
73
+ - Examples must only include the minium number of examples
74
+ - Examples must never include migrations.
75
+ - Examples must not include a features section or similar
76
+ - Examples must include an introduction to the example
77
+ - Examples live in /examples/*.md
data/CHANGELOG.md CHANGED
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.1] - 2025-01-25
11
+
12
+ ### Fixed
13
+ - **Test Suite Stability**: Fixed require statements in spec files that were incorrectly requiring `rails_helper` instead of `spec_helper`
14
+ - Fixed `spec/jpie/automatic_crud_spec.rb`
15
+ - Fixed `spec/jpie/polymorphic_crud_spec.rb`
16
+ - Fixed `spec/jpie/through_associations_crud_spec.rb`
17
+ - **Code Quality**: Addressed RuboCop warnings and improved code style compliance
18
+ - **Error Handling**: Improved error message consistency for unsupported sort fields and include parameters
19
+
20
+ ### Enhanced
21
+ - **Test Coverage**: Maintained high test coverage (93.39%) with improved test reliability
22
+ - **Documentation**: Updated gem publishing workflow and development guidelines
23
+
24
+ ### Technical Details
25
+ - All spec files now correctly use `spec_helper` for consistent test environment setup
26
+ - Improved gem build process with proper dependency management
27
+ - Enhanced RuboCop configuration for better code quality enforcement
28
+
10
29
  ## [0.4.0] - 2025-01-25
11
30
 
12
31
  ### Added