Class: FalseClass
- Defined in:
- motion/core_ext/object/blank.rb,
motion/core_ext/object/to_json.rb,
motion/core_ext/object/to_param.rb,
motion/core_ext/object/duplicable.rb
Instance Method Summary collapse
-
#blank? ⇒ Boolean
false
is blank:. -
#duplicable? ⇒ Boolean
false
is not duplicable:. -
#to_json ⇒ Object
Returns
self
as string. -
#to_param ⇒ Object
Returns
self
.
Instance Method Details
#blank? ⇒ Boolean
false
is blank:
false.blank? # => true
55 56 57 |
# File 'motion/core_ext/object/blank.rb', line 55 def blank? true end |
#duplicable? ⇒ Boolean
false
is not duplicable:
false.duplicable? # => false
false.dup # => TypeError: can't dup FalseClass
44 45 46 |
# File 'motion/core_ext/object/duplicable.rb', line 44 def duplicable? false end |
#to_json ⇒ Object
Returns self
as string.
33 34 35 |
# File 'motion/core_ext/object/to_json.rb', line 33 def to_json self.to_s end |
#to_param ⇒ Object
Returns self
.
24 25 26 |
# File 'motion/core_ext/object/to_param.rb', line 24 def to_param self end |