dynarex 1.8.4 → 1.8.5
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/dynarex.rb +14 -5
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b490ec6437795cbd03aa1225879d2d71cb52fcf962fd85050ab455b27a16642
|
|
4
|
+
data.tar.gz: d58c100605804bc1fd0426330d64988997e93793614a24f7de6f123b1a159041
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72e6e915b63d03cd0e27f6451f9ae840524565b1155306ed45273d392579a579ab6f9cf23653fbf698004132e04891d4c7961a26795485ec588f0e7acd44187e
|
|
7
|
+
data.tar.gz: 8378cd095e160cea18e196818229081e0906b675d1ceb24b9a295429d146aa8600ea21fd4e58846ab0bbee890b17963070533e99cb9cadff7cb34d53e56d157a
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/lib/dynarex.rb
CHANGED
|
@@ -388,6 +388,7 @@ EOF
|
|
|
388
388
|
|
|
389
389
|
xsl_buffer.sub!(/\[!regex_values\]/, xslt_format)
|
|
390
390
|
|
|
391
|
+
puts 'xsl_buffer: ' + xsl_buffer if @debug
|
|
391
392
|
out = Rexslt.new(xsl_buffer, @doc).to_s
|
|
392
393
|
|
|
393
394
|
header ? docheader + "\n" + out : out
|
|
@@ -1147,11 +1148,19 @@ EOF
|
|
|
1147
1148
|
elsif s[/[\[\(]/] # schema
|
|
1148
1149
|
|
|
1149
1150
|
dynarex_new(s)
|
|
1150
|
-
|
|
1151
|
-
elsif s[/^
|
|
1152
|
-
buffer,
|
|
1153
|
-
password: @password, auto: false}
|
|
1154
|
-
|
|
1151
|
+
|
|
1152
|
+
elsif s[/^https?:\/\//] then # url
|
|
1153
|
+
buffer, type = RXFHelper.read s, {username: @username,
|
|
1154
|
+
password: @password, auto: false}
|
|
1155
|
+
elsif s[/^dfs?:\/\//] then
|
|
1156
|
+
|
|
1157
|
+
@local_filepath = s
|
|
1158
|
+
|
|
1159
|
+
if FileX.exists? s then
|
|
1160
|
+
buffer = FileX.read s
|
|
1161
|
+
elsif @schema
|
|
1162
|
+
dynarex_new @schema, default_key: @default_key
|
|
1163
|
+
end
|
|
1155
1164
|
|
|
1156
1165
|
else # local file
|
|
1157
1166
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynarex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Robertson
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
+2pKHQJfU1lEmVoo4afsLMvmq/CZPJba1LR3Z1QJXYCWt9IEZTECStKlK7H6RiIx
|
|
31
31
|
gRA=
|
|
32
32
|
-----END CERTIFICATE-----
|
|
33
|
-
date: 2018-
|
|
33
|
+
date: 2018-10-08 00:00:00.000000000 Z
|
|
34
34
|
dependencies:
|
|
35
35
|
- !ruby/object:Gem::Dependency
|
|
36
36
|
name: dynarex-import
|
|
@@ -121,7 +121,7 @@ dependencies:
|
|
|
121
121
|
version: '0.5'
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: 0.5.
|
|
124
|
+
version: 0.5.3
|
|
125
125
|
type: :runtime
|
|
126
126
|
prerelease: false
|
|
127
127
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -131,7 +131,7 @@ dependencies:
|
|
|
131
131
|
version: '0.5'
|
|
132
132
|
- - ">="
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
|
-
version: 0.5.
|
|
134
|
+
version: 0.5.3
|
|
135
135
|
- !ruby/object:Gem::Dependency
|
|
136
136
|
name: rxraw-lineparser
|
|
137
137
|
requirement: !ruby/object:Gem::Requirement
|
metadata.gz.sig
CHANGED
|
Binary file
|