Sha256: 4808f15cbf95becf5d9e29919f2ce12ce9362f288e2bd710807e9e7847ac5878

Contents?: true

Size: 385 Bytes

Versions: 37

Compression:

Stored size: 385 Bytes

Contents

module Maestrano
  module Saml

    # Wrapper for AttributeValue with multiple values
    # It is subclass of String to be backwards compatible
    # Use AttributeValue#values to get all values as an array
    class AttributeValue < String
      attr_accessor :values
      def initialize(str="", values=[])
        @values = values
        super(str.to_s)
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
maestrano-1.0.6 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.5 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.4 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.3 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.2 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.1 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC9 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC8 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC7 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC6 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC5 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC4 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC3 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC2 lib/maestrano/saml/attribute_value.rb
maestrano-1.0.0.pre.RC1 lib/maestrano/saml/attribute_value.rb
maestrano-0.12.5 lib/maestrano/saml/attribute_value.rb
maestrano-0.12.4 lib/maestrano/saml/attribute_value.rb
maestrano-0.12.3 lib/maestrano/saml/attribute_value.rb
maestrano-0.12.2 lib/maestrano/saml/attribute_value.rb