cuprum-collections 0.5.0 → 0.5.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: 9a123357ad584d32ba68c2b37f5b8a66b40ff3c17ccd516cdb2cbe9b3a03aa49
4
- data.tar.gz: b585c2ad781f2fb534bfaccc9999c039519f4a612aaa5c6ad153c4f74fe8f821
3
+ metadata.gz: c5a70ba7c1dd93657afb1f94f345b6d422e1fee51d7845b249cd2b14e5da387f
4
+ data.tar.gz: 17121928330b174b661ca5e03a727a8976ddce5bc977f3cab90a490c615dfd0c
5
5
  SHA512:
6
- metadata.gz: 78fd0fe599f33cf43bf2bd31adadd0d5a086e4770593deceed206e6dc990378547cae6d6c1f18e16fecb96e13558793a32af3b32777296c9d0bad0ac1ea1001b
7
- data.tar.gz: 18aef11051a058e8ed51ebed3263e0280339f279f22485fe5069bc3d5c2830d8bc18b3fab961e2204f2c967f4a12d70ec4f10fb4625f0f634f9c57db8e2e24a9
6
+ metadata.gz: b871c8cfa148ff76fb46dc1bc59b07e1f4db4ec71eec23b7194a694fba5fb4db48b3f4c9e96c45de299140b556ff0af337b40b3f41752fa350fb64b0369e789a
7
+ data.tar.gz: d9ca82d7b9cead80d22ca4b003da62c1f3add4e3e4a8fc957b4c8d6db5796316e4f8267bed744e2762708f52e34565aafad6778bafc6517e8efa59b2933596de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.1
4
+
5
+ Added missing `config/locales` directory to the gemspec.
6
+
3
7
  ## 0.5.0
4
8
 
5
9
  Major refactoring of Queries. This update is **not** backwards compatible.
data/README.md CHANGED
@@ -26,7 +26,7 @@ The Ruby ecosystem has a wide variety of tools and libraries for managing data a
26
26
 
27
27
  ### Compatibility
28
28
 
29
- Cuprum::Collections is tested against Ruby (MRI) 3.1 through 3.4.
29
+ Cuprum::Collections is tested against Ruby (MRI) 3.2 through 3.4.
30
30
 
31
31
  ### Documentation
32
32
 
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ {
4
+ en: {
5
+ cuprum: {
6
+ collections: {
7
+ constraints: {
8
+ is_not_valid_attribute_name: 'is not a valid attribute name',
9
+ is_not_valid_ordering: 'is not a valid sort order',
10
+ is_not_valid_sort_direction: 'is not a valid sort direction',
11
+ is_valid_attribute_name: 'is a valid attribute name',
12
+ is_valid_ordering: 'is a valid sort order',
13
+ is_valid_sort_direction: 'is a valid sort direction'
14
+ }
15
+ }
16
+ }
17
+ }
18
+ }
@@ -13,7 +13,7 @@ module Cuprum
13
13
  # Minor version.
14
14
  MINOR = 5
15
15
  # Patch version.
16
- PATCH = 0
16
+ PATCH = 1
17
17
  # Prerelease version.
18
18
  PRERELEASE = nil
19
19
  # Build metadata.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuprum-collections
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob "Merlin" Smith
@@ -49,6 +49,7 @@ files:
49
49
  - DEVELOPMENT.md
50
50
  - LICENSE
51
51
  - README.md
52
+ - config/locales/en.rb
52
53
  - lib/cuprum/collections.rb
53
54
  - lib/cuprum/collections/association.rb
54
55
  - lib/cuprum/collections/associations.rb