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
Returns a new instance of Line.
319 320 321 322 |
# File 'lib/review/preprocessor.rb', line 319 def initialize(number, string) @number = number @string = string end |
Instance Attribute Details
#number ⇒ Object (readonly)
Returns the value of attribute number.
324 325 326 |
# File 'lib/review/preprocessor.rb', line 324 def number @number end |
#string ⇒ Object (readonly) Also known as: to_s
Returns the value of attribute string.
325 326 327 |
# File 'lib/review/preprocessor.rb', line 325 def string @string end |
Instance Method Details
#edit ⇒ Object
328 329 330 |
# File 'lib/review/preprocessor.rb', line 328 def edit self.class.new(@number, yield(@string)) end |
#empty? ⇒ Boolean
332 333 334 |
# File 'lib/review/preprocessor.rb', line 332 def empty? @string.strip.empty? end |
#num_indent ⇒ Object
336 337 338 |
# File 'lib/review/preprocessor.rb', line 336 def num_indent @string.slice(/\A\s*/).size end |