Class: TrueClass

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

Instance Method Summary collapse

Instance Method Details

#as_json(options = nil) ⇒ Object

:nodoc:



69
70
71
# File 'activesupport/lib/active_support/core_ext/object/json.rb', line 69

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

#blank?false

true is not blank:

true.blank? # => false

Returns:

  • (false)


78
79
80
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 78

def blank?
  false
end

#to_paramObject

Returns self.



27
28
29
# File 'activesupport/lib/active_support/core_ext/object/to_query.rb', line 27

def to_param
  self
end