Class: ReVIEW::Line
Instance Attribute Summary collapse
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#string ⇒ Object
(also: #to_s)
readonly
Returns the value of attribute string.
Instance Method Summary collapse
- #edit ⇒ Object
- #empty? ⇒ Boolean
-
#initialize(number, string) ⇒ Line
constructor
A new instance of Line.
- #num_indent ⇒ Object
Constructor Details
#initialize(number, string) ⇒ Line
354 355 356 357 |
# File 'lib/review/preprocessor.rb', line 354 def initialize(number, string) @number = number @string = string end |
Instance Attribute Details
#number ⇒ Object (readonly)
Returns the value of attribute number.
359 360 361 |
# File 'lib/review/preprocessor.rb', line 359 def number @number end |
#string ⇒ Object (readonly) Also known as: to_s
Returns the value of attribute string.
360 361 362 |
# File 'lib/review/preprocessor.rb', line 360 def string @string end |
Instance Method Details
#edit ⇒ Object
363 364 365 |
# File 'lib/review/preprocessor.rb', line 363 def edit self.class.new(@number, yield(@string)) end |
#empty? ⇒ Boolean
367 368 369 |
# File 'lib/review/preprocessor.rb', line 367 def empty? @string.strip.empty? end |
#num_indent ⇒ Object
371 372 373 |
# File 'lib/review/preprocessor.rb', line 371 def num_indent @string.slice(/\A\s*/).size end |