Methods
A
B
D
E
T
Instance Public methods
as_json(options = nil)
     # File activesupport/lib/active_support/json/encoding.rb, line 161
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 68
68:   def blank?
69:     false
70:   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
57:   def duplicable?
58:     false
59:   end
encode_json(encoder)
     # File activesupport/lib/active_support/json/encoding.rb, line 162
162:   def encode_json(encoder) to_s end
to_param()
    # File activesupport/lib/active_support/core_ext/object/to_param.rb, line 15
15:   def to_param
16:     self
17:   end