Class: TrueClass

Inherits:
Object show all
Defined in:
lib/active_support/core_ext/object/json.rb,
lib/active_support/core_ext/object/blank.rb,
lib/active_support/core_ext/object/to_query.rb,
lib/active_support/core_ext/object/duplicable.rb

Instance Method Summary collapse

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:



66
67
68
# File 'lib/active_support/core_ext/object/json.rb', line 66

def as_json(options = nil) #:nodoc:
  self
end

#blank?false

true is not blank:

true.blank? # => false

Returns:

  • (false)


76
77
78
# File 'lib/active_support/core_ext/object/blank.rb', line 76

def blank?
  false
end

#to_paramObject

Returns self.



25
26
27
# File 'lib/active_support/core_ext/object/to_query.rb', line 25

def to_param
  self
end