Class: FalseClass
- Defined in:
- activesupport/lib/active_support/core_ext/object/json.rb,
activesupport/lib/active_support/core_ext/object/blank.rb,
activesupport/lib/active_support/core_ext/object/to_query.rb
Instance Method Summary collapse
-
#as_json(options = nil) ⇒ Object
:nodoc:.
-
#blank? ⇒ true
false
is blank:. -
#to_param ⇒ Object
Returns
self
.
Instance Method Details
#as_json(options = nil) ⇒ Object
:nodoc:
89 90 91 |
# File 'activesupport/lib/active_support/core_ext/object/json.rb', line 89 def as_json( = nil) # :nodoc: self end |
#blank? ⇒ true
false
is blank:
false.blank? # => true
67 68 69 |
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 67 def blank? true end |
#to_param ⇒ Object
Returns self
.
34 35 36 |
# File 'activesupport/lib/active_support/core_ext/object/to_query.rb', line 34 def to_param self end |