sbf-dm-constraints 1.3.0.beta → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -2
- data/dm-constraints.gemspec +3 -3
- data/lib/data_mapper/constraints/version.rb +1 -1
- data/tasks/release.rake +6 -0
- metadata +10 -9
- /data/lib/{dm-constraints.rb → sbf-dm-constraints.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0479815978c8c960f4139a4fcdb6a9bff0a3d557ea24d9a26846da3cc848e36b'
|
4
|
+
data.tar.gz: '09c010393ccd476358be22e4bdcf13da3521458a1e70324a1cc9cb303326eec7'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54a8ebadab23a638fbda6353e3dc653f5bc0ca626c716a8e73c96c632a63a29d04b63eea0f30d8c0c94b0d7629cf677e67d189f281c6934edfe1376aaeaa8ea4
|
7
|
+
data.tar.gz: bf1ae0525f631f8680bec533e303a63a0b9d70c9f47aa254677df8d8df26f19616c2252423224d705e9e039f835e4ee09058e8c6394efc84b8e1ca1843291831
|
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,5 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.version = DataMapper::Constraints::VERSION
|
18
18
|
gem.required_ruby_version = '>= 2.7.8'
|
19
19
|
|
20
|
-
gem.add_runtime_dependency('sbf-dm-core', '~> 1.3.0
|
20
|
+
gem.add_runtime_dependency('sbf-dm-core', '~> 1.3.0')
|
21
21
|
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.3.0
|
4
|
+
version: 1.3.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-11-12 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.0
|
19
|
+
version: 1.3.0
|
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.0
|
26
|
+
version: 1.3.0
|
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:
|
@@ -58,13 +58,14 @@ files:
|
|
58
58
|
- lib/data_mapper/constraints/relationship/one_to_many.rb
|
59
59
|
- lib/data_mapper/constraints/resource.rb
|
60
60
|
- lib/data_mapper/constraints/version.rb
|
61
|
-
- lib/dm-constraints.rb
|
61
|
+
- lib/sbf-dm-constraints.rb
|
62
62
|
- spec/integration/constraints_spec.rb
|
63
63
|
- spec/isolated/require_after_setup_spec.rb
|
64
64
|
- spec/isolated/require_before_setup_spec.rb
|
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:
|
File without changes
|