Skip to content

Commit afc12cd

Browse files
hasaniskandarronaldtse
authored andcommitted
fix: missing app_info
1 parent a94906a commit afc12cd

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.rubocop.yml

+6
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ Style/StringLiteralsInInterpolation:
2424

2525
Style/TrailingCommaInArguments:
2626
EnforcedStyleForMultiline: consistent_comma
27+
28+
Style/TrailingCommaInArrayLiteral:
29+
EnforcedStyleForMultiline: consistent_comma
30+
31+
Style/TrailingCommaInHashLiteral:
32+
EnforcedStyleForMultiline: consistent_comma

lib/genericode/annotation.rb

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ class Annotation < Shale::Mapper
1515
map "AppInfo", to: :app_info
1616
end
1717

18+
def self.of_json(hash, **)
19+
hash = { "AppInfo" => hash } if hash.any?
20+
21+
super
22+
end
23+
1824
xml do
1925
root "Annotation"
2026
namespace "http://docs.oasis-open.org/codelist/ns/genericode/1.0/", "gc"

spec/genericode/code_list_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@
167167
encoding: "utf-8",
168168
)
169169
expected_xml = described_class.from_xml(xml_content).to_xml(
170+
except: [:schema_location],
170171
pretty: true,
171172
declaration: true,
172173
encoding: "utf-8",

0 commit comments

Comments
 (0)