sbf-dm-constraints 1.3.0.beta → 1.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/Gemfile +2 -2
- data/dm-constraints.gemspec +4 -3
- data/lib/data_mapper/constraints/version.rb +1 -1
- data/tasks/release.rake +6 -0
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f6db355447cb01d92b37f2d7344f9fc4d88753c5c7c332fce35251499b86436
|
4
|
+
data.tar.gz: e49a5d8ec0d0ad98427c27024a2b1d890808762eb4c436fb46f0bba8b83fcc15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd3b50a3bc954360aee2f1cb2ff13fe2a2917616c8901b78a65b424ac82691595e789a96d3581405b0df4aecf42f81a535f69e1b1b03c42b59c991bfba937921
|
7
|
+
data.tar.gz: 451de69bb650adae32542c2018bda3c827ed6febc2dcb7fd6015ab2f950f9c5ed8fab00b9273a4031c46a94982eebcb76fb197479748912c039864ea375ff841
|
data/Gemfile
CHANGED
@@ -7,8 +7,8 @@ gemspec
|
|
7
7
|
SOURCE = ENV.fetch('SOURCE', :git).to_sym
|
8
8
|
REPO_POSTFIX = (SOURCE == :path) ? '' : '.git'
|
9
9
|
DATAMAPPER = (SOURCE == :path) ? Pathname(__FILE__).dirname.parent : 'https://github.com/firespring'
|
10
|
-
DM_VERSION = '~> 1.3.0
|
11
|
-
DO_VERSION = '~> 0.
|
10
|
+
DM_VERSION = '~> 1.3.0'.freeze
|
11
|
+
DO_VERSION = '~> 0.11.0'.freeze
|
12
12
|
DM_DO_ADAPTERS = %w(sqlite postgres mysql oracle sqlserver).freeze
|
13
13
|
CURRENT_BRANCH = ENV.fetch('GIT_BRANCH', 'master')
|
14
14
|
|
data/dm-constraints.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
require File.expand_path('../lib/data_mapper/constraints/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 = 'DataMapper plugin constraining relationships'
|
7
7
|
gem.description = 'Plugin that adds foreign key constraints to associations. Currently supports only PostgreSQL and MySQL ' \
|
8
8
|
'All constraints are added to the underlying database, but constraining is implemented in pure ruby.'
|
@@ -17,5 +17,6 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.version = DataMapper::Constraints::VERSION
|
18
18
|
gem.required_ruby_version = '>= 2.7.8'
|
19
19
|
|
20
|
-
|
20
|
+
#re-pin once dev work is done
|
21
|
+
gem.add_runtime_dependency('sbf-dm-core', '~> 1.3')
|
21
22
|
end
|
data/tasks/release.rake
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sbf-dm-constraints
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- opensource_firespring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sbf-dm-core
|
@@ -16,19 +16,19 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.3
|
19
|
+
version: '1.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.3
|
26
|
+
version: '1.3'
|
27
27
|
description: Plugin that adds foreign key constraints to associations. Currently supports
|
28
28
|
only PostgreSQL and MySQL All constraints are added to the underlying database,
|
29
29
|
but constraining is implemented in pure ruby.
|
30
30
|
email:
|
31
|
-
-
|
31
|
+
- opensource@firespring.com
|
32
32
|
executables: []
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files:
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- spec/isolated/require_spec.rb
|
66
66
|
- spec/rcov.opts
|
67
67
|
- spec/spec_helper.rb
|
68
|
+
- tasks/release.rake
|
68
69
|
- tasks/spec.rake
|
69
70
|
- tasks/yard.rake
|
70
71
|
- tasks/yardstick.rake
|
@@ -83,9 +84,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
84
|
version: 2.7.8
|
84
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
86
|
requirements:
|
86
|
-
- - "
|
87
|
+
- - ">="
|
87
88
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
89
|
+
version: '0'
|
89
90
|
requirements: []
|
90
91
|
rubygems_version: 3.4.10
|
91
92
|
signing_key:
|