queryable_collection 0.3.0 → 0.4.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: 10a738d561b62e7febc9b27c12b9515eb9f9e2b634998448c532ec561af195e0
4
- data.tar.gz: bd1a98435914ec618eca432f1c87dadd7598333496aac0c41755fd10ee376eb1
3
+ metadata.gz: cf35c3ca7869212459238abd6d2c801bb7b06ab539024aa9ab24ef20fdbb7e8f
4
+ data.tar.gz: eb8f8ca2dc3898ce4de4f78a11719d055fe9341a5b98d20ab687cfbd34eae458
5
5
  SHA512:
6
- metadata.gz: b4306b6931e3153810d75618addb026311692a69dc85d5625e67957e5bf885f6a11d81dc2c9ca5baab9edf122f7f75778a0cd1ad96bb11747720c35729fb6a53
7
- data.tar.gz: ef19cf6ac38d1d20a1454c3944a31d093e12222c153267735b1427266e983abaa4fe898e1a5fa095e3b3820afa8a9670518205728ff839133ec18c80341fe343
6
+ metadata.gz: 9e172c39d0f3e56f51dd7fa1452ea0f0c7ccfbd10c481c194d4017712c79bfca511afb6a4254c66125d3f88873a470045dfaf836d058679258d121ba39b217ed
7
+ data.tar.gz: c3a4f14d95fc376dfeedbe8dc79b5fc1b52ed45f3dd0359392bda0336b92177342afbc9ca29fbad8d659eaf1e41e2a4c1ef4629a2838c58506ee09ced7c32ecf
@@ -5,7 +5,7 @@ jobs:
5
5
  strategy:
6
6
  fail-fast: false
7
7
  matrix:
8
- ruby: ["2.6", "2.7", "3.0", "3.1"]
8
+ ruby: ["3.0", "3.1", "3.2"]
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
11
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 2.6
2
+ TargetRubyVersion: 3.2
3
3
 
4
4
  Metrics/LineLength:
5
5
  Max: 100
@@ -14,4 +14,4 @@ Style/TrivialAccessors:
14
14
  AllowPredicates: true
15
15
 
16
16
  Metrics/BlockLength:
17
- IgnoredMethods: ['describe', 'context']
17
+ IgnoredMethods: ["describe", "context"]
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.2.0
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
1
  # Change Log
2
+
2
3
  All notable changes to this project will be documented in this file.
3
4
  This project adheres to [Semantic Versioning](http://semver.org/).
4
- This changelog adheres to [Keep a CHANGELOG](http://keepachangelog.com/).
5
+ This changelog adheres to [Keep a CHANGELOG](http://keepachangelog.com/).
6
+
7
+ ## 0.4.0
8
+
9
+ - [PLAT-1175] Update to Ruby 3.2
5
10
 
6
11
  ## 0.3.0
7
12
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QueryableCollection
4
- VERSION = '0.3.0'
4
+ VERSION = '0.4.0'
5
5
  end
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.required_ruby_version = '>= 2.6'
27
+ spec.required_ruby_version = '>= 3.0'
28
28
 
29
29
  spec.add_dependency 'adamantium', '~> 0.2'
30
30
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queryable_collection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akil Madan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-01-25 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: adamantium
@@ -162,14 +162,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
162
162
  requirements:
163
163
  - - ">="
164
164
  - !ruby/object:Gem::Version
165
- version: '2.6'
165
+ version: '3.0'
166
166
  required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  requirements:
168
168
  - - ">="
169
169
  - !ruby/object:Gem::Version
170
170
  version: '0'
171
171
  requirements: []
172
- rubygems_version: 3.3.3
172
+ rubygems_version: 3.4.1
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Allows the creation and querying of a collection of elements