clone_kit 0.5.2 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/LICENSE +21 -0
- data/clone_kit.gemspec +2 -1
- data/lib/clone_kit/cloners/mongoid_ruleset_cloner.rb +2 -2
- data/lib/clone_kit/version.rb +1 -1
- metadata +20 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a507983839d97919215cefd37d745e7a0cdb1f77
|
4
|
+
data.tar.gz: 5c5ad4a047aff295561b67c110a7e6cac3ace3c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81280583c44e89985b63c2da66e69551f54d946cdd06153f98c842541456ac52801480ce634a963e4572a6534f6cb1826d4137f384c51010008956eb7f17de3a
|
7
|
+
data.tar.gz: 41606a0203376a83e017140286115613e5a663b682b5126d1ec33415290e3df12b73276df6a57246d3cc76a708f031bb3bbf6d75f023f1be073ddbbcdfc2d6da
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
3
3
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
4
4
|
|
5
|
-
## [0.5.2](https://github.com/kapost/clone_kit/compare/v0.5.
|
5
|
+
## [0.5.2](https://github.com/kapost/clone_kit/compare/v0.5.1...v0.5.2) - 2019-04-02
|
6
6
|
- Do not hardcode classname in CloneKit::Strategies::Synchronous
|
7
7
|
|
8
8
|
## [0.5.1](https://github.com/kapost/clone_kit/compare/v0.5.0...v0.5.1) - 2018-12-20
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2019 Kapost
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/clone_kit.gemspec
CHANGED
@@ -30,7 +30,8 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.add_development_dependency "combustion", "~> 0.7.0"
|
31
31
|
spec.add_development_dependency "database_cleaner", "1.5.3"
|
32
32
|
spec.add_development_dependency "fakeredis"
|
33
|
-
spec.add_development_dependency "
|
33
|
+
spec.add_development_dependency "mongo", "2.8.0"
|
34
|
+
spec.add_development_dependency "mongoid", "~> 5.2.1"
|
34
35
|
spec.add_development_dependency "pg", "~> 0.18.4"
|
35
36
|
spec.add_development_dependency "pry"
|
36
37
|
spec.add_development_dependency "pry-byebug"
|
@@ -105,7 +105,7 @@ module CloneKit
|
|
105
105
|
model_that_we_wont_save = document_klass.new(attributes)
|
106
106
|
|
107
107
|
if model_that_we_wont_save.valid?
|
108
|
-
model_klass.collection.
|
108
|
+
model_klass.collection.insert_one(attributes)
|
109
109
|
else
|
110
110
|
report_errors(attributes, model_that_we_wont_save)
|
111
111
|
end
|
@@ -145,7 +145,7 @@ module CloneKit
|
|
145
145
|
|
146
146
|
def each_existing_record(ids)
|
147
147
|
ids.each do |id|
|
148
|
-
record = model_klass.collection.find(_id: id).
|
148
|
+
record = model_klass.collection.find(_id: id).first
|
149
149
|
next if record.nil?
|
150
150
|
|
151
151
|
yield record
|
data/lib/clone_kit/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clone_kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Croft
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -108,20 +108,34 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: mongo
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 2.8.0
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 2.8.0
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
126
|
name: mongoid
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
114
128
|
requirements:
|
115
129
|
- - "~>"
|
116
130
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
131
|
+
version: 5.2.1
|
118
132
|
type: :development
|
119
133
|
prerelease: false
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
121
135
|
requirements:
|
122
136
|
- - "~>"
|
123
137
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
138
|
+
version: 5.2.1
|
125
139
|
- !ruby/object:Gem::Dependency
|
126
140
|
name: pg
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -264,6 +278,7 @@ files:
|
|
264
278
|
- ".ruby-version"
|
265
279
|
- CHANGELOG.md
|
266
280
|
- Gemfile
|
281
|
+
- LICENSE
|
267
282
|
- README.md
|
268
283
|
- Rakefile
|
269
284
|
- bin/console
|
@@ -314,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
314
329
|
version: '0'
|
315
330
|
requirements: []
|
316
331
|
rubyforge_project:
|
317
|
-
rubygems_version: 2.6.14.
|
332
|
+
rubygems_version: 2.6.14.4
|
318
333
|
signing_key:
|
319
334
|
specification_version: 4
|
320
335
|
summary: A toolkit to assist in complex cloning operations
|