Class: PrettyPrint::Group
Instance Attribute Summary collapse
-
#breakables ⇒ Object
readonly
Returns the value of attribute breakables.
-
#depth ⇒ Object
readonly
Returns the value of attribute depth.
Instance Method Summary collapse
- #break ⇒ Object
- #break? ⇒ Boolean
- #first? ⇒ Boolean
-
#initialize(depth) ⇒ Group
constructor
A new instance of Group.
Constructor Details
#initialize(depth) ⇒ Group
Returns a new instance of Group.
285 286 287 288 289 |
# File 'lib/project/prettyprint.rb', line 285 def initialize(depth) @depth = depth @breakables = [] @break = false end |
Instance Attribute Details
#breakables ⇒ Object (readonly)
Returns the value of attribute breakables.
290 291 292 |
# File 'lib/project/prettyprint.rb', line 290 def breakables @breakables end |
#depth ⇒ Object (readonly)
Returns the value of attribute depth.
290 291 292 |
# File 'lib/project/prettyprint.rb', line 290 def depth @depth end |
Instance Method Details
#break ⇒ Object
292 293 294 |
# File 'lib/project/prettyprint.rb', line 292 def break @break = true end |
#break? ⇒ Boolean
296 297 298 |
# File 'lib/project/prettyprint.rb', line 296 def break? @break end |
#first? ⇒ Boolean
300 301 302 303 304 305 306 307 |
# File 'lib/project/prettyprint.rb', line 300 def first? if defined? @first false else @first = false true end end |