openxml/openxml-docx

View on GitHub
lib/openxml/docx/properties/style.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class Style < ValueProperty

        def valid?
          !value.nil?
        end

        def invalid_message
          "Invalid #{name}: value must not be nil"
        end

      end
    end
  end
end