csv_step_importer 0.15.1 → 0.15.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/CHANGELOG.md +10 -0
- data/Gemfile.lock +16 -16
- data/lib/csv_step_importer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb324412e7481b8cfd4d77332f2923839bf0fbb45c5efd8bdfa966ac7af4b167
|
|
4
|
+
data.tar.gz: f40da57519c32ff582a2c87650d8d5d7d380882699a7329453c96d699ded09d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 440d91feff87600475bf735fa00a5cf1adf232cdc39fc290d264d6e644f3261b1b0a6577a4a772164f910e0cb45d34a8b9f0944081d8d3a87ef84919d64f8280
|
|
7
|
+
data.tar.gz: 153acdce436de325bd7785d22ec1c1de9c3add83afac04b912a6f7fb6e8a24b5c95ca9d55c4cd3aff220366d0857ccf7fbe53099690f75ddb6719f1a7ab4219d
|
data/CHANGELOG.md
CHANGED
|
@@ -185,3 +185,13 @@ See lib/csv_step_importer/file.rb for more options
|
|
|
185
185
|
### Added
|
|
186
186
|
- Row now uses method_missing to fetch attributes, so you can access them as methods. (only getters)
|
|
187
187
|
### Changed
|
|
188
|
+
|
|
189
|
+
## 2018-09-19 Version 0.15.1
|
|
190
|
+
### Added
|
|
191
|
+
### Changed
|
|
192
|
+
- (FIX) row fetches introduced with v0.15.0 failed to return nil on empty CSV fields
|
|
193
|
+
|
|
194
|
+
## 2018-09-19 Version 0.15.2
|
|
195
|
+
### Added
|
|
196
|
+
### Changed
|
|
197
|
+
- Update gems (including gems marked as security risk)
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
csv_step_importer (0.15.
|
|
4
|
+
csv_step_importer (0.15.2)
|
|
5
5
|
activemodel
|
|
6
6
|
activerecord-import
|
|
7
7
|
activesupport
|
|
@@ -29,7 +29,7 @@ GEM
|
|
|
29
29
|
activemodel (= 5.2.1)
|
|
30
30
|
activesupport (= 5.2.1)
|
|
31
31
|
arel (>= 9.0)
|
|
32
|
-
activerecord-import (0.
|
|
32
|
+
activerecord-import (0.27.0)
|
|
33
33
|
activerecord (>= 3.2)
|
|
34
34
|
activesupport (5.2.1)
|
|
35
35
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
@@ -39,26 +39,26 @@ GEM
|
|
|
39
39
|
arel (9.0.0)
|
|
40
40
|
ast (2.4.0)
|
|
41
41
|
builder (3.2.3)
|
|
42
|
-
concurrent-ruby (1.
|
|
42
|
+
concurrent-ruby (1.1.1)
|
|
43
43
|
crass (1.0.4)
|
|
44
44
|
diff-lcs (1.3)
|
|
45
45
|
erubi (1.7.1)
|
|
46
|
-
i18n (1.1.
|
|
46
|
+
i18n (1.1.1)
|
|
47
47
|
concurrent-ruby (~> 1.0)
|
|
48
48
|
jaro_winkler (1.5.1)
|
|
49
|
-
loofah (2.2.
|
|
49
|
+
loofah (2.2.3)
|
|
50
50
|
crass (~> 1.0.2)
|
|
51
51
|
nokogiri (>= 1.5.9)
|
|
52
|
-
method_source (0.9.
|
|
52
|
+
method_source (0.9.1)
|
|
53
53
|
mini_portile2 (2.3.0)
|
|
54
54
|
minitest (5.11.3)
|
|
55
|
-
nokogiri (1.8.
|
|
55
|
+
nokogiri (1.8.5)
|
|
56
56
|
mini_portile2 (~> 2.3.0)
|
|
57
57
|
parallel (1.12.1)
|
|
58
|
-
parser (2.5.
|
|
58
|
+
parser (2.5.3.0)
|
|
59
59
|
ast (~> 2.4.0)
|
|
60
60
|
powerpack (0.1.2)
|
|
61
|
-
rack (2.0.
|
|
61
|
+
rack (2.0.6)
|
|
62
62
|
rack-test (1.1.0)
|
|
63
63
|
rack (>= 1.0, < 3)
|
|
64
64
|
rails-dom-testing (2.0.3)
|
|
@@ -80,29 +80,29 @@ GEM
|
|
|
80
80
|
rspec-mocks (~> 3.8.0)
|
|
81
81
|
rspec-core (3.8.0)
|
|
82
82
|
rspec-support (~> 3.8.0)
|
|
83
|
-
rspec-expectations (3.8.
|
|
83
|
+
rspec-expectations (3.8.2)
|
|
84
84
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
85
85
|
rspec-support (~> 3.8.0)
|
|
86
86
|
rspec-mocks (3.8.0)
|
|
87
87
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
88
88
|
rspec-support (~> 3.8.0)
|
|
89
89
|
rspec-support (3.8.0)
|
|
90
|
-
rubocop (0.
|
|
90
|
+
rubocop (0.60.0)
|
|
91
91
|
jaro_winkler (~> 1.5.1)
|
|
92
92
|
parallel (~> 1.10)
|
|
93
93
|
parser (>= 2.5, != 2.5.1.1)
|
|
94
94
|
powerpack (~> 0.1)
|
|
95
95
|
rainbow (>= 2.2.2, < 4.0)
|
|
96
96
|
ruby-progressbar (~> 1.7)
|
|
97
|
-
unicode-display_width (~> 1.
|
|
97
|
+
unicode-display_width (~> 1.4.0)
|
|
98
98
|
rubocop-rails (1.5.0)
|
|
99
99
|
railties (>= 3.0)
|
|
100
100
|
rubocop (~> 0.53)
|
|
101
|
-
rubocop-rails_config (0.2.
|
|
101
|
+
rubocop-rails_config (0.2.6)
|
|
102
102
|
railties (>= 3.0)
|
|
103
103
|
rubocop (~> 0.56)
|
|
104
|
-
rubocop-rspec (1.
|
|
105
|
-
rubocop (>= 0.
|
|
104
|
+
rubocop-rspec (1.30.1)
|
|
105
|
+
rubocop (>= 0.60.0)
|
|
106
106
|
ruby-progressbar (1.10.0)
|
|
107
107
|
smarter_csv (1.2.5)
|
|
108
108
|
thor (0.20.0)
|
|
@@ -124,4 +124,4 @@ DEPENDENCIES
|
|
|
124
124
|
rubocop-rspec
|
|
125
125
|
|
|
126
126
|
BUNDLED WITH
|
|
127
|
-
1.16.
|
|
127
|
+
1.16.6
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: csv_step_importer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian-Manuel Butzke
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|