Class: TrueClass
- Defined in:
- activesupport/lib/active_support/json/encoding.rb,
activesupport/lib/active_support/core_ext/object/blank.rb,
activesupport/lib/active_support/core_ext/object/to_param.rb,
activesupport/lib/active_support/core_ext/object/duplicable.rb
Constant Summary collapse
- AS_JSON =
ActiveSupport::JSON::Variable.new('true').freeze
Instance Method Summary collapse
-
#as_json(options = nil) ⇒ Object
:nodoc:.
-
#blank? ⇒ Boolean
true
is not blank:. -
#duplicable? ⇒ Boolean
true
is not duplicable:. - #to_param ⇒ Object
Instance Method Details
#as_json(options = nil) ⇒ Object
:nodoc:
165 |
# File 'activesupport/lib/active_support/json/encoding.rb', line 165 def as_json( = nil) AS_JSON end |
#blank? ⇒ Boolean
true
is not blank:
true.blank? # => false
65 66 67 |
# File 'activesupport/lib/active_support/core_ext/object/blank.rb', line 65 def blank? false end |
#duplicable? ⇒ Boolean
true
is not duplicable:
true.duplicable? # => false
true.dup # => TypeError: can't dup TrueClass
57 58 59 |
# File 'activesupport/lib/active_support/core_ext/object/duplicable.rb', line 57 def duplicable? false end |
#to_param ⇒ Object
15 16 17 |
# File 'activesupport/lib/active_support/core_ext/object/to_param.rb', line 15 def to_param self end |