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