sealink-param-validation 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51202f9bbc45b78472b86b240b179d6ea47dac880925e81fad23c17bb37f92c7
4
- data.tar.gz: 2653a93bf1b08a67720786cd114202490e8e95a9ba37d47402e2885129f18432
3
+ metadata.gz: 07ed5ea6e511eaddacff9e029a67e7ae27322c2ce73c59e0e19f9f68c0d08201
4
+ data.tar.gz: effcba7276888c5128f3da7dcd93c8a959c0bcfe17dd9768a4f7c940f191e8e3
5
5
  SHA512:
6
- metadata.gz: b7a4597db80e7a26ffeb0a5ef12a633ee5ed1996cfaabb48642a0dc6d91ace7621ef922e8cd4fa184beb3fc839ddda9fb8ebf87fe54f519df73cd840f22bc8b7
7
- data.tar.gz: f8a17c3d26b9ec360e3f68d46e3460f5304e8c8f63ff8048b4991bea09d58c4b1d75b8e8a9c5fcd8ae8e1dc07a87536cf52daa578fb102c015658d6a9a29cc94
6
+ metadata.gz: af40d01a92f602ea720142fe57f7f48a2cd06c46e7dd975c437ff8a207b7e66bade4423444fb18c498c6793dddbbcad7d426ad492c378cfe1196aea209eed40d
7
+ data.tar.gz: a277088e0acf3fc752c9e60da9eb88530c5ce392d942d05bd650268f8d40b6e3b6e1c6779457d24ed81362e783336fba5e3efaed5ffd895abc94bde2a81a6731
@@ -0,0 +1,12 @@
1
+ # The commits that did automated reformatting. You can ignore them
2
+ # during git-blame with `--ignore-rev` or `--ignore-revs-file`.
3
+ # You can also globally configure GIT with the following command
4
+ #
5
+ # $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
6
+ #
7
+ # Example entries:
8
+ #
9
+ # <full commit hash> # initial black-format
10
+ # <full commit hash> # rename something internal
11
+
12
+ b57e744f2a3bd9fa42c97325cc6fd6a87db66d9c # Pretty CHANGELOG.md
@@ -6,7 +6,7 @@ jobs:
6
6
  fail-fast: false
7
7
  matrix:
8
8
  gemfile: [rails60, rails61, rails70]
9
- ruby: ["2.7", "3.0", "3.1"]
9
+ ruby: ["3.0", "3.1", "3.2"]
10
10
  runs-on: ubuntu-latest
11
11
  env:
12
12
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.2.0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Sealink Param Validation
2
2
 
3
+ ## 0.4.0
4
+
5
+ - [PLAT-1175] Update to Ruby 3.2
6
+
3
7
  ## 0.3.0
4
8
 
5
9
  - [PLAT-183] Implement coverage check / ruby 3.1 / rails 7.0
@@ -10,4 +14,4 @@
10
14
 
11
15
  ## 0.1.0
12
16
 
13
- * [TT-6430] Extract our param validation from QuickTravel
17
+ - [TT-6430] Extract our param validation from QuickTravel
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SealinkParamValidation
4
- VERSION = '0.3.0'
4
+ VERSION = '0.4.0'
5
5
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.files = `git ls-files`.split($/)
19
19
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
20
  spec.require_paths = ['lib']
21
- spec.required_ruby_version = '>= 2.7.0'
21
+ spec.required_ruby_version = '>= 3.0'
22
22
 
23
23
  spec.add_dependency 'rails'
24
24
  spec.add_dependency 'dry-schema', '>= 1.0.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sealink-param-validation
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
  - Sean Earle
8
8
  autorequire:
9
9
  bindir: bin
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: rails
@@ -114,6 +114,7 @@ executables: []
114
114
  extensions: []
115
115
  extra_rdoc_files: []
116
116
  files:
117
+ - ".git-blame-ignore-revs"
117
118
  - ".github/dependabot.yml"
118
119
  - ".github/workflows/release.yml"
119
120
  - ".github/workflows/ruby.yml"
@@ -149,14 +150,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
149
150
  requirements:
150
151
  - - ">="
151
152
  - !ruby/object:Gem::Version
152
- version: 2.7.0
153
+ version: '3.0'
153
154
  required_rubygems_version: !ruby/object:Gem::Requirement
154
155
  requirements:
155
156
  - - ">="
156
157
  - !ruby/object:Gem::Version
157
158
  version: '0'
158
159
  requirements: []
159
- rubygems_version: 3.3.3
160
+ rubygems_version: 3.4.1
160
161
  signing_key:
161
162
  specification_version: 4
162
163
  summary: This is some logic we want to use across many projects so we have extracted