Class: TrueClass
- Inherits:
-
Object
- Object
- TrueClass
- Defined in:
- lib/boolean.rb
Instance Method Summary collapse
-
#to_j(indent = 0) ⇒ String
Json for the String, which is quoted self.
Instance Method Details
#to_j(indent = 0) ⇒ String
Returns Json for the String, which is quoted self.
3 4 5 |
# File 'lib/boolean.rb', line 3 def to_j(indent=0) " "*indent + "true" end |