Class: Attributor::Symbol
- Inherits:
-
Object
- Object
- Attributor::Symbol
- Includes:
- Type
- Defined in:
- lib/attributor/types/symbol.rb
Class Method Summary collapse
- .example(_context = nil, options: {}) ⇒ Object
- .family ⇒ Object
- .load(value, context = Attributor::DEFAULT_ROOT_CONTEXT, **options) ⇒ Object
- .native_type ⇒ Object
Methods included from Type
Class Method Details
.example(_context = nil, options: {}) ⇒ Object
15 16 17 |
# File 'lib/attributor/types/symbol.rb', line 15 def self.example(_context = nil, options: {}) :example end |
.family ⇒ Object
19 20 21 |
# File 'lib/attributor/types/symbol.rb', line 19 def self.family String.family end |
.load(value, context = Attributor::DEFAULT_ROOT_CONTEXT, **options) ⇒ Object
9 10 11 12 13 |
# File 'lib/attributor/types/symbol.rb', line 9 def self.load(value, context = Attributor::DEFAULT_ROOT_CONTEXT, **) value.to_sym rescue super end |
.native_type ⇒ Object
5 6 7 |
# File 'lib/attributor/types/symbol.rb', line 5 def self.native_type ::Symbol end |