Module: SamlIdp::Attributeable::ClassMethods
- Defined in:
- lib/saml_idp/attributeable.rb
Instance Method Summary collapse
Instance Method Details
#attribute(att) ⇒ Object
18 19 20 21 |
# 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 |