module SamlIdp::Attributeable::ClassMethods
Public Instance Methods
attribute(att)
click to toggle source
# File lib/saml_idp/attributeable.rb, line 18 def attribute(att) define_method(att) { attributes[att] } define_method("#{att}=") { |new_value| self.attributes[att] = new_value } end