xmi 0.7.0 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a7a71b5331da8d8c45859ce5c634bd65bd2564ce76505bdeea512df0ffb5001
4
- data.tar.gz: bceea821dc3bfc67feff1e43b4124288c02e1b0bf99351e32679e87f67594da3
3
+ metadata.gz: 34578a547c634462287c471f0fcada1e85de933f00e5ff87f6d56d7c8a02c0c0
4
+ data.tar.gz: 98677957ed1f5e8953f76a8319bcd3ada4d46b69bb53d944dd7b442f069edda8
5
5
  SHA512:
6
- metadata.gz: 0a67bce4eef99e51ab0213309b2d24ddaf0170c01a1c5c3094f2ba3ae2436cf9c3052a828545516650bd321f2445081fd310233c8ddaa082ca0e8d653b299029
7
- data.tar.gz: 7d7b2f66f23144d1c27809e2d471f430e98794681da8944305ee701b889ee612c486cc9a8a118c34ef3c6fef1091f89a08007e9139215fd8fb9b88378411996c
6
+ metadata.gz: da61be7657e2cef3879859a64440154e34a3e57ed54a3fe2e549ef42f43f380ee2cf8366ea8b7f7faa4537e2035e2bbcdc924ebeafebd71fc787f0add2b4c2ef
7
+ data.tar.gz: 355d33cf9a3913d9117026c7acda6d6a45516f5170c381b6791405fe13a7dca6854dfa773959796ca9569050fffba0c46879058a312b256c4a031aab92880ea5
@@ -8,6 +8,7 @@ module Xmi
8
8
  attribute :tagged, :string
9
9
  attribute :package_name, :string
10
10
  attribute :virtual_inheritance, :integer
11
+ attribute :associationclass, :string
11
12
 
12
13
  xml do
13
14
  root "extendedProperties"
@@ -16,6 +17,7 @@ module Xmi
16
17
  map_attribute "tagged", to: :tagged
17
18
  map_attribute "package_name", to: :package_name
18
19
  map_attribute "virtualInheritance", to: :virtual_inheritance
20
+ map_attribute "associationclass", to: :associationclass
19
21
  end
20
22
  end
21
23
  end
data/lib/xmi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Xmi
4
- VERSION = "0.7.0"
4
+ VERSION = "0.7.1"
5
5
  end
@@ -132,7 +132,7 @@ module Xmi
132
132
  # @param primary_register [Lutaml::Model::Register] The primary register
133
133
  # @param all_versions [Array<String>] All detected namespace versions
134
134
  # @return [void]
135
- # rubocop:disable Metrics/CyclomaticComplexity
135
+ # rubocop:disable-next Metrics/CyclomaticComplexity
136
136
  def extend_fallback_for_mixed_namespaces(primary_register, all_versions)
137
137
  xmi_version = all_versions.first
138
138
  other_versions = all_versions.drop(1)
@@ -165,7 +165,6 @@ module Xmi
165
165
  end
166
166
  end
167
167
  end
168
- # rubocop:enable Metrics/CyclomaticComplexity
169
168
  end
170
169
  end
171
170
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xmi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.