lutaml-uml 0.2.4 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79a4d0228330313679cd5545dd940cc978334821a8a8c3b37686cbba9e6b2bf0
4
- data.tar.gz: 6c835a1f42bfa3b9d961c8924e020aaf0c41c8361c47032639db6dbc4349f1f8
3
+ metadata.gz: 4dd197690f8da12b6b7ba5055db64eeb862717769f78ef7acf3477ce0a32f377
4
+ data.tar.gz: 400e3ead0e0d89f6a781a09a97967ed51d0d955015779334290829ed76d317da
5
5
  SHA512:
6
- metadata.gz: f219cfc72ffb715c66ff37a2d5f4b565c959ecde36ed9c1d872ef02a80113c2b8b4d0eb6dc8891f886ab5dc48a0cccb1e4ba54a0b16b5a2eb33634e05814b7fa
7
- data.tar.gz: 258fb342974bdbcbd9f212bdfe329c5710784d43c10531b171384ea510ebb84ac2b39a165d5b572023c9517402594d790d818102de96f07715cce7e00e0f8343
6
+ metadata.gz: bb4a6abf3136b6d1b4e207bd14d889e43ce2be9f9c4f036956702c0f9430c22baebaabd7d281f57feaa923b9ab9531a43be5d7d88276cce0fc8b856a222c807a
7
+ data.tar.gz: 228355fdf7c6fcb51f5ec0958470d3e0f9ff6fc675f0a6029ecba4c22a597fdef6bdd4d9a2df76bb2d5e2141c5a4227bdd97c2269ec3e2628f9ef3eac8508b78
@@ -2,7 +2,6 @@
2
2
 
3
3
  require "lutaml/uml/version"
4
4
  require "lutaml/uml/interface/command_line"
5
- require "lutaml/uml/lutaml_path/document_wrapper"
6
5
 
7
6
  module Lutaml
8
7
  module Uml
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Lutaml
4
4
  module Uml
5
- VERSION = "0.2.4"
5
+ VERSION = "0.2.5"
6
6
  end
7
7
  end
@@ -26,7 +26,6 @@ Gem::Specification.new do |spec|
26
26
 
27
27
  spec.add_runtime_dependency "activesupport", "~> 5.0"
28
28
  spec.add_runtime_dependency "hashie", "~> 4.1.0"
29
- spec.add_runtime_dependency "lutaml", "~> 0.3.0"
30
29
  spec.add_runtime_dependency "parslet", "~> 1.7.1"
31
30
  spec.add_runtime_dependency "ruby-graphviz", "~> 1.2"
32
31
  spec.add_runtime_dependency "thor", "~> 1.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lutaml-uml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
@@ -38,20 +38,6 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 4.1.0
41
- - !ruby/object:Gem::Dependency
42
- name: lutaml
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: 0.3.0
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: 0.3.0
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: parslet
57
43
  requirement: !ruby/object:Gem::Requirement
@@ -244,7 +230,6 @@ files:
244
230
  - lib/lutaml/uml/instance.rb
245
231
  - lib/lutaml/uml/interface/base.rb
246
232
  - lib/lutaml/uml/interface/command_line.rb
247
- - lib/lutaml/uml/lutaml_path/document_wrapper.rb
248
233
  - lib/lutaml/uml/model.rb
249
234
  - lib/lutaml/uml/node/base.rb
250
235
  - lib/lutaml/uml/node/class_node.rb
@@ -1,15 +0,0 @@
1
- require "lutaml/lutaml_path/document_wrapper"
2
-
3
- module Lutaml
4
- module Uml
5
- module LutamlPath
6
- class DocumentWrapper < ::Lutaml::LutamlPath::DocumentWrapper
7
- protected
8
-
9
- def serialize_document(document)
10
- serialize_to_hash(document)
11
- end
12
- end
13
- end
14
- end
15
- end