Sha256: fd51505e3828a4c0065e19c96bf258d03204fce78afc0abf26f590d1cb3d6677

Contents?: true

Size: 854 Bytes

Versions: 3

Compression:

Stored size: 854 Bytes

Contents

module Saml
  module Kit
    module XmlTemplatable
      include ::Xml::Kit::Templatable

      def template_path
        root_path = File.expand_path(File.dirname(__FILE__))
        template_name = "#{self.class.name.split("::").last.underscore}.builder"
        File.join(root_path, "builders/templates/", template_name)
      end

      # Returns true if an embedded signature is requested and at least one signing certificate is available via the configuration.
      def sign?
        return configuration.sign? if embed_signature.nil?
        embed_signature && configuration.sign?
      end

      def digest_method
        configuration.digest_method
      end

      def signature_method
        configuration.signature_method
      end

      def signing_key_pair
        configuration.key_pairs(use: :signing).last
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
saml-kit-1.0.2 lib/saml/kit/xml_templatable.rb
saml-kit-1.0.1 lib/saml/kit/xml_templatable.rb
saml-kit-1.0.0 lib/saml/kit/xml_templatable.rb