Skip to content

Commit 8a79d84

Browse files
committed
feat: compatibility with lutaml-model 0.7.0, fixes #21
1 parent c9c0f71 commit 8a79d84

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

genericode.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.require_paths = ["lib"]
3030

3131
spec.add_dependency "csv"
32-
spec.add_dependency "lutaml-model"
32+
spec.add_dependency "lutaml-model", "~>0.7"
3333
spec.add_dependency "tabulo"
3434
spec.add_dependency "thor"
3535
end

lib/genericode/column.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def long_name_from_json(model, value)
5050
end
5151

5252
def long_name_to_json(model, doc)
53-
return if model.long_name.empty?
53+
return if model.long_name.nil? || model.long_name.empty?
5454

5555
doc["LongName"] = LongName.as_json(Utils.one_or_all(model.long_name))
5656
end

lib/genericode/identification.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def long_name_from_json(model, value)
4343
end
4444

4545
def long_name_to_json(model, doc)
46-
return if model.long_name.empty?
46+
return if model.long_name.nil? || model.long_name.empty?
4747

4848
doc["LongName"] = LongName.as_json(model.long_name)
4949
end
@@ -56,7 +56,7 @@ def location_uri_from_json(model, value)
5656
end
5757

5858
def location_uri_to_json(model, doc)
59-
return if model.location_uri.empty?
59+
return if model.location_uri.nil? || model.location_uri.empty?
6060

6161
doc["LocationUri"] = Lutaml::Model::Type::String.cast(Utils.one_or_all(model.location_uri))
6262
end
@@ -66,7 +66,7 @@ def alternate_format_location_uri_from_json(model, value)
6666
end
6767

6868
def alternate_format_location_uri_to_json(model, doc)
69-
return if model.alternate_format_location_uri.empty?
69+
return if model.alternate_format_location_uri.nil? || model.alternate_format_location_uri.empty?
7070

7171
doc["AlternateFormatLocationUri"] = MimeTypedUri.as_json(Utils.one_or_all(model.alternate_format_location_uri))
7272
end

lib/genericode/key.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def long_name_from_json(model, value)
3939
end
4040

4141
def long_name_to_json(model, doc)
42-
return if model.long_name.empty?
42+
return if model.long_name.nil? || model.long_name.empty?
4343

4444
doc["LongName"] = LongName.as_json(model.long_name)
4545
end

0 commit comments

Comments
 (0)