cuprum-collections 0.5.0.rc.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/config/locales/en.rb +18 -0
- data/lib/cuprum/collections/version.rb +3 -3
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5a70ba7c1dd93657afb1f94f345b6d422e1fee51d7845b249cd2b14e5da387f
|
|
4
|
+
data.tar.gz: 17121928330b174b661ca5e03a727a8976ddce5bc977f3cab90a490c615dfd0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b871c8cfa148ff76fb46dc1bc59b07e1f4db4ec71eec23b7194a694fba5fb4db48b3f4c9e96c45de299140b556ff0af337b40b3f41752fa350fb64b0369e789a
|
|
7
|
+
data.tar.gz: d9ca82d7b9cead80d22ca4b003da62c1f3add4e3e4a8fc957b4c8d6db5796316e4f8267bed744e2762708f52e34565aafad6778bafc6517e8efa59b2933596de
|
data/CHANGELOG.md
CHANGED
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.
|
|
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,11 +13,11 @@ module Cuprum
|
|
|
13
13
|
# Minor version.
|
|
14
14
|
MINOR = 5
|
|
15
15
|
# Patch version.
|
|
16
|
-
PATCH =
|
|
16
|
+
PATCH = 1
|
|
17
17
|
# Prerelease version.
|
|
18
|
-
PRERELEASE =
|
|
18
|
+
PRERELEASE = nil
|
|
19
19
|
# Build metadata.
|
|
20
|
-
BUILD =
|
|
20
|
+
BUILD = nil
|
|
21
21
|
|
|
22
22
|
class << self
|
|
23
23
|
# Generates the gem version string from the Version constants.
|
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.
|
|
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
|