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

- old
+ new

@@ -3,22 +3,14 @@ module Elements class EmbedItalic < 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 - raise ArgumentError, "Not a validly-formatted GUID" unless value =~ guid_regex - end end end end end