Sha256: 1c40e0a914f58fc2edc7d028ba9c7949e4a30c80ba4880f31a6bc037e4a77321

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

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

      # @deprecated Use {#embed_signature=} instead of this method.
      def sign=(value)
        Saml::Kit.deprecate("sign= is deprecated. Use embed_signature= instead.")
        self.embed_signature = value
      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

6 entries across 6 versions & 1 rubygems

Version Path
saml-kit-0.3.6 lib/saml/kit/xml_templatable.rb
saml-kit-0.3.5 lib/saml/kit/xml_templatable.rb
saml-kit-0.3.4 lib/saml/kit/xml_templatable.rb
saml-kit-0.3.3 lib/saml/kit/xml_templatable.rb
saml-kit-0.3.2 lib/saml/kit/xml_templatable.rb
saml-kit-0.3.1 lib/saml/kit/xml_templatable.rb