lib/openxml/docx/elements/embed_regular.rb in openxml-docx-0.10.1 vs lib/openxml/docx/elements/embed_regular.rb in openxml-docx-0.10.2

- old
+ new

@@ -3,20 +3,20 @@ module Elements class EmbedRegular < Element namespace :w with_namespace :w do - attribute :font_key, expects: :bracketed_guid, displays_as: :fontKey - attribute :subsetted, expects: :true_or_false + attribute :font_key, displays_as: :fontKey, matches: /\{[0-9A-F]{8}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{12}\}/ # Regex taken from spec section 22.9.2.4 + attribute :subsetted, expects: :boolean end attribute :relationship_id, expects: :string, displays_as: :id, namespace: :r private def bracketed_guid(value) - guid_regex = /\{[0-9A-F]{8}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{4}\-[0-9A-F]{12}\}/ # Regex taken from spec section 22.9.2.4 + guid_regex = raise ArgumentError, "Not a validly-formatted GUID (#{value})" unless value =~ guid_regex end end end