sealink-param-validation 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 +4 -4
- data/.git-blame-ignore-revs +12 -0
- data/.github/workflows/ruby.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +5 -1
- data/lib/sealink_param_validation/version.rb +1 -1
- data/sealink_param_validation.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07ed5ea6e511eaddacff9e029a67e7ae27322c2ce73c59e0e19f9f68c0d08201
|
|
4
|
+
data.tar.gz: effcba7276888c5128f3da7dcd93c8a959c0bcfe17dd9768a4f7c940f191e8e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
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
|
-
|
|
17
|
+
- [TT-6430] Extract our param validation from QuickTravel
|
|
@@ -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 = '>=
|
|
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.
|
|
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:
|
|
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:
|
|
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.
|
|
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
|