Methods
B
D
T
Instance Public methods
blank?()

false is blank:

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

Returns self.

# File activesupport/lib/active_support/core_ext/object/to_param.rb, line 24
def to_param
  self
end