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

true is not blank:

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

true is not duplicable:

true.duplicable? # => false
true.dup         # => TypeError: can't dup TrueClass
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 57
def duplicable?
  false
end
encode_json(encoder)
# File activesupport/lib/active_support/json/encoding.rb, line 162
def encode_json(encoder) to_s end
to_param()
# File activesupport/lib/active_support/core_ext/object/to_param.rb, line 15
def to_param
  self
end