clone_kit 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: c402806efb4fcfb36d62c7b3cf4388e254d30f7d1fcf05dae327ce8c5de5b5da
4
- data.tar.gz: 18c48471b921149cd91655f51955aab1323b088223cacafee32deb5fb9ff2cbb
2
+ SHA1:
3
+ metadata.gz: 596b570e7050a768cfc6defb35524e3e07fba114
4
+ data.tar.gz: b7f12a242104463b3c4f1760640f82f607afa5f5
5
5
  SHA512:
6
- metadata.gz: 5a0112d7eaa4e4cf3619b978fbf47c7ab5f1c95849afe3fdbbbc6eb915ec55835890a02cad24c244652ce240d2301c4a339761c76d7e1471e246c37199316253
7
- data.tar.gz: 0d69d79c8e3ebd885cff17a9db8d83ccdddd618c8db5a7cb34a594cff6e31f1db9cea8f5a68aaa51d1b30060c4a747157544950d5eb7c73038a7da67107961ae
6
+ metadata.gz: 23f977ba070227d559041b951f526361c242a0af1f1893d8549a93f13b97249b56c410b09e39cf55183a40db55d74108de3fcad08d5370e148966c8f7105e699
7
+ data.tar.gz: e505317b762f5764f3ad5690bdee2cb6749e10c9e4114a5910ba0bc3fbf16ba721ffd0b00c37fc6565fe4c5f32577845d87487a1fd70f28b360f3674d4c1bbd1
@@ -2,6 +2,9 @@
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.0...v0.5.2) - 2019-04-02
6
+ - Do not hardcode classname in CloneKit::Strategies::Synchronous
7
+
5
8
  ## [0.5.1](https://github.com/kapost/clone_kit/compare/v0.5.0...v0.5.1) - 2018-12-20
6
9
  - Added `SharedIdMap#delete` method for removing keys
7
10
 
@@ -22,7 +22,7 @@ module CloneKit
22
22
  already_cloned: operation.already_cloned + model_specs.map(&:model).map(&:to_s),
23
23
  id: operation.id,
24
24
  arguments: operation.arguments,
25
- strategy: CloneKit::Strategies::Synchronous
25
+ strategy: self.class
26
26
  }
27
27
  )
28
28
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloneKit
4
- VERSION = "0.5.1"
4
+ VERSION = "0.5.2"
5
5
  end
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.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Croft
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-21 00:00:00.000000000 Z
11
+ date: 2019-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -314,7 +314,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
314
314
  version: '0'
315
315
  requirements: []
316
316
  rubyforge_project:
317
- rubygems_version: 2.7.6
317
+ rubygems_version: 2.6.14.3
318
318
  signing_key:
319
319
  specification_version: 4
320
320
  summary: A toolkit to assist in complex cloning operations