roundtrip_xml 0.0.0 → 0.0.1
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/roundtrip_xml.rb +6 -6
- data/lib/{roundtrip → roundtrip_xml}/base_cleanroom.rb +0 -0
- data/lib/{roundtrip → roundtrip_xml}/dsl_builder.rb +0 -0
- data/lib/{roundtrip → roundtrip_xml}/dsl_runtime.rb +3 -3
- data/lib/{roundtrip → roundtrip_xml}/plain_accessors.rb +0 -0
- data/lib/{roundtrip → roundtrip_xml}/root_cleanroom.rb +1 -1
- data/lib/{roundtrip → roundtrip_xml}/roxml_builder.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f5864c0b1462c2486342dbf085f4a303e7dcf7e
|
|
4
|
+
data.tar.gz: 6d7bf2ccc2dd2bcb028165ead0159e88b53327d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48c9b419de4a6c1ea4370758a067bd4d6bb858961463126b27f2466ea415769c3c39faa47299ff7ceb5edce2fc3d48e42f2c23ad5485f9c5070449627f51e155
|
|
7
|
+
data.tar.gz: 94191253c7ea0fdb495edbca7c1d1062aa8099d69f980a4f5c996a256ebeb0bf8f59aaf8ed11010776e00ef0a55ac34deabead6f0f7e5270d34765ac9adb1224
|
data/lib/roundtrip_xml.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
require './lib/
|
|
2
|
-
require './lib/
|
|
3
|
-
require './lib/
|
|
4
|
-
require './lib/
|
|
5
|
-
require './lib/
|
|
6
|
-
require './lib/
|
|
1
|
+
require './lib/roundtrip_xml/dsl_runtime'
|
|
2
|
+
require './lib/roundtrip_xml/dsl_builder'
|
|
3
|
+
require './lib/roundtrip_xml/base_cleanroom'
|
|
4
|
+
require './lib/roundtrip_xml/root_cleanroom'
|
|
5
|
+
require './lib/roundtrip_xml/roxml_builder'
|
|
6
|
+
require './lib/roundtrip_xml/plain_accessors'
|
|
7
7
|
puts DslRuntime.new
|
|
File without changes
|
|
File without changes
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
require 'roxml'
|
|
2
2
|
require 'nokogiri'
|
|
3
|
-
require './lib/
|
|
4
|
-
require './lib/
|
|
5
|
-
require './lib/
|
|
3
|
+
require './lib/roundtrip_xml/roxml_builder'
|
|
4
|
+
require './lib/roundtrip_xml/root_cleanroom'
|
|
5
|
+
require './lib/roundtrip_xml/base_cleanroom'
|
|
6
6
|
# Class which evaluates DSL and read XML files to populate the namespace with classes
|
|
7
7
|
class DslRuntime
|
|
8
8
|
def initialize()
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# require 'roxml'
|
|
2
2
|
require 'nokogiri'
|
|
3
|
-
require './lib/
|
|
3
|
+
require './lib/roundtrip_xml/plain_accessors'
|
|
4
4
|
# Builds dynamic classes based on an XML file.
|
|
5
5
|
# Classes that already exist in the DslRuntime instance are modified if necessary, not overridden.
|
|
6
6
|
class RoxmlBuilder
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roundtrip_xml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Usick
|
|
@@ -73,13 +73,13 @@ executables: []
|
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
-
- lib/roundtrip/base_cleanroom.rb
|
|
77
|
-
- lib/roundtrip/dsl_builder.rb
|
|
78
|
-
- lib/roundtrip/dsl_runtime.rb
|
|
79
|
-
- lib/roundtrip/plain_accessors.rb
|
|
80
|
-
- lib/roundtrip/root_cleanroom.rb
|
|
81
|
-
- lib/roundtrip/roxml_builder.rb
|
|
82
76
|
- lib/roundtrip_xml.rb
|
|
77
|
+
- lib/roundtrip_xml/base_cleanroom.rb
|
|
78
|
+
- lib/roundtrip_xml/dsl_builder.rb
|
|
79
|
+
- lib/roundtrip_xml/dsl_runtime.rb
|
|
80
|
+
- lib/roundtrip_xml/plain_accessors.rb
|
|
81
|
+
- lib/roundtrip_xml/root_cleanroom.rb
|
|
82
|
+
- lib/roundtrip_xml/roxml_builder.rb
|
|
83
83
|
homepage: https://github.com/chrisUsick/roundtrip-xml
|
|
84
84
|
licenses:
|
|
85
85
|
- MIT
|