sbf-dm-validations 1.3.0.beta → 1.3.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/Gemfile +2 -2
- data/dm-validations.gemspec +3 -3
- data/lib/data_mapper/validation/version.rb +1 -1
- data/tasks/release.rake +6 -0
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36c4f83a9e6c531e6b37bed168f17436c6c733a12e7cd000e13d6da9a13af6b9
|
|
4
|
+
data.tar.gz: 982129ba641788d0f3ea175fccd73941cbc0c14f312b2707cd29226b34b44ed1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c965e99804bab4436ad39c19c48f4c5c3e43c2efc57660beba943d1940ef01356f9e7c9401f5fb65291f3a6f0fe4d3bf9be05253a4329fd2bfc6020d9cb1ad77
|
|
7
|
+
data.tar.gz: 46782da899844edaf49b09dd63c1fc485885dc667fdbfe31c262d407f216a7e43e1d9cbb628d45d1d93fc05d1c522a6fc1656b269041446915971d505ee79ebc
|
data/Gemfile
CHANGED
|
@@ -5,8 +5,8 @@ gemspec
|
|
|
5
5
|
SOURCE = ENV.fetch('SOURCE', :git).to_sym
|
|
6
6
|
REPO_POSTFIX = (SOURCE == :path) ? '' : '.git'
|
|
7
7
|
DATAMAPPER = (SOURCE == :path) ? Pathname(__FILE__).dirname.parent : 'https://github.com/firespring'
|
|
8
|
-
DM_VERSION = '~> 1.3.0
|
|
9
|
-
DO_VERSION = '~> 0.
|
|
8
|
+
DM_VERSION = '~> 1.3.0'.freeze
|
|
9
|
+
DO_VERSION = '~> 0.11.0'.freeze
|
|
10
10
|
DM_DO_ADAPTERS = %w(sqlite postgres mysql oracle sqlserver).freeze
|
|
11
11
|
CURRENT_BRANCH = ENV.fetch('GIT_BRANCH', 'master')
|
|
12
12
|
|
data/dm-validations.gemspec
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
require File.expand_path('../lib/data_mapper/validation/version', __FILE__)
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |gem|
|
|
4
|
-
gem.authors =
|
|
5
|
-
gem.email = ['
|
|
4
|
+
gem.authors = ['opensource_firespring']
|
|
5
|
+
gem.email = ['opensource@firespring.com']
|
|
6
6
|
gem.summary = 'Library for performing validations on DataMapper resources and plain Ruby objects'
|
|
7
7
|
gem.description = 'This is a DataMapper plugin that provides validations for DataMapper model classes.'
|
|
8
8
|
gem.homepage = 'https://datamapper.org'
|
|
@@ -16,5 +16,5 @@ Gem::Specification.new do |gem|
|
|
|
16
16
|
gem.version = DataMapper::Validation::VERSION
|
|
17
17
|
gem.required_ruby_version = '>= 2.7.8'
|
|
18
18
|
|
|
19
|
-
gem.add_runtime_dependency('sbf-dm-core', '~> 1.3.0
|
|
19
|
+
gem.add_runtime_dependency('sbf-dm-core', '~> 1.3.0')
|
|
20
20
|
end
|
data/tasks/release.rake
ADDED
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sbf-dm-validations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.0
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
- Emmanuel Gomez
|
|
7
|
+
- opensource_firespring
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2024-
|
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: sbf-dm-core
|
|
@@ -17,18 +16,18 @@ dependencies:
|
|
|
17
16
|
requirements:
|
|
18
17
|
- - "~>"
|
|
19
18
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 1.3.0
|
|
19
|
+
version: 1.3.0
|
|
21
20
|
type: :runtime
|
|
22
21
|
prerelease: false
|
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
23
|
requirements:
|
|
25
24
|
- - "~>"
|
|
26
25
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 1.3.0
|
|
26
|
+
version: 1.3.0
|
|
28
27
|
description: This is a DataMapper plugin that provides validations for DataMapper
|
|
29
28
|
model classes.
|
|
30
29
|
email:
|
|
31
|
-
-
|
|
30
|
+
- opensource@firespring.com
|
|
32
31
|
executables: []
|
|
33
32
|
extensions: []
|
|
34
33
|
extra_rdoc_files:
|
|
@@ -215,6 +214,7 @@ files:
|
|
|
215
214
|
- spec/unit/violation_set/enumerable_spec.rb
|
|
216
215
|
- spec/unit/violation_set/reading_spec.rb
|
|
217
216
|
- spec/unit/violation_set/respond_to_spec.rb
|
|
217
|
+
- tasks/release.rake
|
|
218
218
|
- tasks/spec.rake
|
|
219
219
|
- tasks/yard.rake
|
|
220
220
|
- tasks/yardstick.rake
|
|
@@ -233,9 +233,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
233
233
|
version: 2.7.8
|
|
234
234
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
235
|
requirements:
|
|
236
|
-
- - "
|
|
236
|
+
- - ">="
|
|
237
237
|
- !ruby/object:Gem::Version
|
|
238
|
-
version:
|
|
238
|
+
version: '0'
|
|
239
239
|
requirements: []
|
|
240
240
|
rubygems_version: 3.4.10
|
|
241
241
|
signing_key:
|