Methods
A
B
D
E
T
Instance Public methods
as_json(options = nil)
# File activesupport/lib/active_support/json/encoding.rb, line 160
def as_json(options = nil) self end
blank?()

false is blank:

false.blank? # => true
# File activesupport/lib/active_support/core_ext/object/blank.rb, line 57
def blank?
  true
end
duplicable?()

false is not duplicable:

false.duplicable? # => false
false.dup         # => TypeError: can't dup FalseClass
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 46
def duplicable?
  false
end
encode_json(encoder)
# File activesupport/lib/active_support/json/encoding.rb, line 161
def encode_json(encoder) to_s end
to_param()
# File activesupport/lib/active_support/core_ext/object/to_param.rb, line 21
def to_param
  self
end