careful-import 0.1.1 → 0.1.2
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/README.md +4 -1
- data/careful-import.gemspec +2 -2
- data/lib/careful_import.rb +0 -1
- data/lib/careful_import/version.rb +1 -1
- metadata +4 -5
- data/lib/careful_import/railtie.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d95cfc374b8bb1fd39441e6cabec32ccbe77f76ccac37a46f981214090a1acb3
|
4
|
+
data.tar.gz: 1ff8978e9e9669bec628f478d36b570e9dcd31160ed01064b94299e316ec07db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62a1b952199ae21f2484899d316008c7f968480ccb71a30b7153001d53878c811f6a0512d097bbcce25adfaa77e6a42c8fdbcd91665646152a10df6569b087a8
|
7
|
+
data.tar.gz: '084afaa6f15e897a2e644eaf49b61899098e976b46dcaae65c17160ee95f5722b56c11604ef8400208392d6d5db924cb5f73efa867eb1e0e4dfefa0e26ad72ee'
|
data/README.md
CHANGED
data/careful-import.gemspec
CHANGED
@@ -6,8 +6,8 @@ Gem::Specification.new do |spec|
|
|
6
6
|
spec.authors = ["Clive Ivins"]
|
7
7
|
spec.email = ["civins@itglue.com"]
|
8
8
|
|
9
|
-
spec.summary = %q{Validates and updates args prior to
|
10
|
-
spec.description = %q{If a primary_key value is passed in when importing using
|
9
|
+
spec.summary = %q{Validates and updates args prior to activerecord-import#import}
|
10
|
+
spec.description = %q{If a primary_key value is passed in when importing using activerecord-import#import an error is raised}
|
11
11
|
spec.homepage = "https://bitbucket.org/itglue/careful-import/src/master/"
|
12
12
|
spec.license = "MIT"
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.2.8")
|
data/lib/careful_import.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: careful-import
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Clive Ivins
|
@@ -24,8 +24,8 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
description: If a primary_key value is passed in when importing using
|
28
|
-
|
27
|
+
description: If a primary_key value is passed in when importing using activerecord-import#import
|
28
|
+
an error is raised
|
29
29
|
email:
|
30
30
|
- civins@itglue.com
|
31
31
|
executables: []
|
@@ -46,7 +46,6 @@ files:
|
|
46
46
|
- lib/careful_import.rb
|
47
47
|
- lib/careful_import/importer.rb
|
48
48
|
- lib/careful_import/initializer.rb
|
49
|
-
- lib/careful_import/railtie.rb
|
50
49
|
- lib/careful_import/version.rb
|
51
50
|
homepage: https://bitbucket.org/itglue/careful-import/src/master/
|
52
51
|
licenses:
|
@@ -71,5 +70,5 @@ requirements: []
|
|
71
70
|
rubygems_version: 3.0.8
|
72
71
|
signing_key:
|
73
72
|
specification_version: 4
|
74
|
-
summary: Validates and updates args prior to
|
73
|
+
summary: Validates and updates args prior to activerecord-import#import
|
75
74
|
test_files: []
|