roundtrip_xml 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1d89e8b67e0e4e6d17b36a6f7bd669f848978a0
4
- data.tar.gz: 3c9dabb9fad98650def6f2befaab68adfd56fccf
3
+ metadata.gz: 4f5864c0b1462c2486342dbf085f4a303e7dcf7e
4
+ data.tar.gz: 6d7bf2ccc2dd2bcb028165ead0159e88b53327d2
5
5
  SHA512:
6
- metadata.gz: 53589a94506c4e41bc5bcb8f478929c003aec8f92f4040c4f871524a5daeeaa6b702ffaa167041d8ea4cf42b057c07f355031e88ead55a63e203f71b9e9fa816
7
- data.tar.gz: 80edb85109be632bd9d1ad6b3003ab7931c679b04f7b489518677d48228e91a39664e0aa3cafe3696c0f5e737d4871f031aa2e02603b893d8aa02a46486b95cf
6
+ metadata.gz: 48c9b419de4a6c1ea4370758a067bd4d6bb858961463126b27f2466ea415769c3c39faa47299ff7ceb5edce2fc3d48e42f2c23ad5485f9c5070449627f51e155
7
+ data.tar.gz: 94191253c7ea0fdb495edbca7c1d1062aa8099d69f980a4f5c996a256ebeb0bf8f59aaf8ed11010776e00ef0a55ac34deabead6f0f7e5270d34765ac9adb1224
@@ -1,7 +1,7 @@
1
- require './lib/roundtrip/dsl_runtime'
2
- require './lib/roundtrip/dsl_builder'
3
- require './lib/roundtrip/base_cleanroom'
4
- require './lib/roundtrip/root_cleanroom'
5
- require './lib/roundtrip/roxml_builder'
6
- require './lib/roundtrip/plain_accessors'
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
@@ -1,8 +1,8 @@
1
1
  require 'roxml'
2
2
  require 'nokogiri'
3
- require './lib/roundtrip/roxml_builder'
4
- require './lib/roundtrip/root_cleanroom'
5
- require './lib/roundtrip/base_cleanroom'
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()
@@ -1,4 +1,4 @@
1
- require './lib/roundtrip/base_cleanroom'
1
+ require './lib/roundtrip_xml/base_cleanroom'
2
2
  # addes the `define` and `use_file` method to a cleanroom. Only used when evaluating a root file
3
3
  class RootCleanroom < BaseCleanroom
4
4
 
@@ -1,6 +1,6 @@
1
1
  # require 'roxml'
2
2
  require 'nokogiri'
3
- require './lib/roundtrip/plain_accessors'
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.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