use_salesforce_dataloader 0.0.11 → 0.0.12
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/lib/use_salesforce_dataloader.rb +5 -5
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d859959a83ee92d5cd3e507a07a9424df1564a8b077244bf1a76f4ef9c243535
|
4
|
+
data.tar.gz: 62401b057adf9b567990986e185aab5cf693110ad601e840e74c3a93cee1cf8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 971ad23d8f0414eb885643e8af58c708f16acc1c312c90a4d40e377dad21aeeb2fca7d35ee6cdb9cfd03f49aebad540fe6e7c82a1857cb81ae8b1becc6049c36
|
7
|
+
data.tar.gz: e1f06060e744f2af4d4ce01b4d45e1b7f2b9de2ccd77b9fb0d3244e0d452b97104e055546683f8f9fa8e5cbc112db758212026167ee6f4298985c65e1ad14c1b
|
@@ -9,7 +9,7 @@ require 'open3'
|
|
9
9
|
# - <tt>map.sdl</tt>
|
10
10
|
#
|
11
11
|
class UseSalesforceDataLoader
|
12
|
-
VERSION = '0.0.
|
12
|
+
VERSION = '0.0.12'
|
13
13
|
|
14
14
|
# Setter for <tt>@conf_dir</tt>, set values <tt>@conf_key_file</tt>, <tt>@conf_process_xml_file</tt> and <tt>@conf_map_file</tt> at the same time.
|
15
15
|
def conf_dir=(path)
|
@@ -137,12 +137,12 @@ class UseSalesforceDataLoader
|
|
137
137
|
entries.merge!(@overwrite_entries) if @overwrite_entries
|
138
138
|
entries_xml = entries
|
139
139
|
.select{|k, v| v}
|
140
|
-
.map{|k, v| ENTRIES_XML_TEMPLATE % [k, v.encode(xml: :text)]}
|
140
|
+
.map{|k, v| ENTRIES_XML_TEMPLATE % [k, v.to_s.encode(xml: :text)]}
|
141
141
|
.join
|
142
142
|
.chomp
|
143
|
-
PROCESS_XML_TEMPLATE % [@bean_id.encode(xml: :text),
|
144
|
-
@bean_description.encode(xml: :text),
|
145
|
-
@property_name.encode(xml: :text),
|
143
|
+
PROCESS_XML_TEMPLATE % [@bean_id.to_s.encode(xml: :text),
|
144
|
+
@bean_description.to_s.encode(xml: :text),
|
145
|
+
@property_name.to_s.encode(xml: :text),
|
146
146
|
entries_xml]
|
147
147
|
end
|
148
148
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: use_salesforce_dataloader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroaki Nagoya
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: hnagoya@gmail.com
|
@@ -36,8 +36,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
36
|
- !ruby/object:Gem::Version
|
37
37
|
version: '0'
|
38
38
|
requirements: []
|
39
|
-
|
40
|
-
rubygems_version: 2.7.6
|
39
|
+
rubygems_version: 3.0.3
|
41
40
|
signing_key:
|
42
41
|
specification_version: 4
|
43
42
|
summary: Force.com Apex Data Loader for Ruby/Linux - command line version
|