Methods
A
B
D
T
Constants
AS_JSON = ActiveSupport::JSON::Variable.new('true').freeze
Instance Public methods
as_json(options = nil)
# File activesupport/lib/active_support/json/encoding.rb, line 165
def as_json(options = nil) AS_JSON end
blank?()

true is not blank:

true.blank? # => false
# File activesupport/lib/active_support/core_ext/object/blank.rb, line 65
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
to_param()
# File activesupport/lib/active_support/core_ext/object/to_param.rb, line 15
def to_param
  self
end