Class: FalseClass
- Inherits:
-
Object
- Object
- FalseClass
- Defined in:
- activesupport/lib/active_support/core_ext/object/blank.rb,
activesupport/lib/active_support/json/encoding.rb,
activesupport/lib/active_support/core_ext/object/to_param.rb,
activesupport/lib/active_support/core_ext/object/duplicable.rb
Overview
:nodoc:
Constant Summary
- AS_JSON =
ActiveSupport::JSON::Variable.new('false').freeze
Instance Method Summary (collapse)
-
- (Object) as_json(options = nil)
:nodoc:.
- - (Boolean) blank?
- - (Boolean) duplicable?
- - (Object) to_param
Instance Method Details
- (Object) as_json(options = nil)
:nodoc:
163 |
# File 'activesupport/lib/active_support/json/encoding.rb', line 163 def as_json( = nil) AS_JSON end |
- (Boolean) blank?
47 48 49 |
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 47 def blank? true end |
- (Boolean) duplicable?
32 33 34 |
# File 'activesupport/lib/active_support/core_ext/object/duplicable.rb', line 32 def duplicable? false end |
- (Object) to_param
23 24 25 |
# File 'activesupport/lib/active_support/core_ext/object/to_param.rb', line 23 def to_param self end |