dynarex-import 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dynarex-import.rb +1 -2
- metadata +1 -1
data/lib/dynarex-import.rb
CHANGED
@@ -10,7 +10,7 @@ class DynarexImport
|
|
10
10
|
|
11
11
|
def initialize(options={})
|
12
12
|
o = {xml: '', foreign_schema: '', schema: ''}.merge(options)
|
13
|
-
|
13
|
+
xsl = build_xsl(o[:foreign_schema], o[:schema])
|
14
14
|
@to_xml = transform(xsl, o[:xml])
|
15
15
|
end
|
16
16
|
|
@@ -120,4 +120,3 @@ class DynarexImport
|
|
120
120
|
|
121
121
|
end
|
122
122
|
|
123
|
-
|