Class: Scimitar::Supportable
- Inherits:
-
Object
- Object
- Scimitar::Supportable
- Includes:
- ActiveModel::Model
- Defined in:
- app/models/scimitar/supportable.rb
Instance Attribute Summary collapse
-
#supported ⇒ Object
Returns the value of attribute supported.
Class Method Summary collapse
Instance Attribute Details
#supported ⇒ Object
Returns the value of attribute supported.
4 5 6 |
# File 'app/models/scimitar/supportable.rb', line 4 def supported @supported end |
Class Method Details
.supported ⇒ Object
6 7 8 |
# File 'app/models/scimitar/supportable.rb', line 6 def self.supported new(supported: true) end |
.unsupported ⇒ Object
10 11 12 |
# File 'app/models/scimitar/supportable.rb', line 10 def self.unsupported new(supported: false) end |