File tree 3 files changed +13
-0
lines changed
3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,9 @@ Style/StringLiteralsInInterpolation:
24
24
25
25
Style/TrailingCommaInArguments :
26
26
EnforcedStyleForMultiline : consistent_comma
27
+
28
+ Style/TrailingCommaInArrayLiteral :
29
+ EnforcedStyleForMultiline : consistent_comma
30
+
31
+ Style/TrailingCommaInHashLiteral :
32
+ EnforcedStyleForMultiline : consistent_comma
Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ class Annotation < Shale::Mapper
15
15
map "AppInfo" , to : :app_info
16
16
end
17
17
18
+ def self . of_json ( hash , **)
19
+ hash = { "AppInfo" => hash } if hash . any?
20
+
21
+ super
22
+ end
23
+
18
24
xml do
19
25
root "Annotation"
20
26
namespace "http://docs.oasis-open.org/codelist/ns/genericode/1.0/" , "gc"
Original file line number Diff line number Diff line change 167
167
encoding : "utf-8" ,
168
168
)
169
169
expected_xml = described_class . from_xml ( xml_content ) . to_xml (
170
+ except : [ :schema_location ] ,
170
171
pretty : true ,
171
172
declaration : true ,
172
173
encoding : "utf-8" ,
You can’t perform that action at this time.
0 commit comments