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-0.12.1 lib/maestrano/saml/attribute_value.rb
maestrano-0.12.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.11.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.10.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.9.2 lib/maestrano/saml/attribute_value.rb
maestrano-0.9.1 lib/maestrano/saml/attribute_value.rb
maestrano-0.9.0 lib/maestrano/saml/attribute_value.rb
maestrano-ruby-test-0.8.3 lib/maestrano/saml/attribute_value.rb
maestrano-0.8.2 lib/maestrano/saml/attribute_value.rb
maestrano-0.8.1 lib/maestrano/saml/attribute_value.rb
maestrano-0.8.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.7.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.6.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.5.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.4.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.3.0 lib/maestrano/saml/attribute_value.rb
maestrano-0.2.0 lib/maestrano/saml/attribute_value.rb