Class: Ruvi::BufferLine

Inherits:
String
  • Object
show all
Includes:
NewLineAttributes
Defined in:
lib/buffer.rb

Instance Attribute Summary

Attributes included from NewLineAttributes

#newline_at_end, #newline_at_start

Instance Method Summary collapse

Methods included from NewLineAttributes

#inspect

Methods inherited from String

#balance_backward, #balance_forward, #expand_tabs, #match_bracket, #paren_backward, #paren_forward

Constructor Details

#initialize(*k) ⇒ BufferLine

Returns a new instance of BufferLine.



35
36
37
# File 'lib/buffer.rb', line 35

def initialize *k
    super(*k)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sym, *params) ⇒ Object



38
39
40
# File 'lib/buffer.rb', line 38

def method_missing sym, *params
    super(*params)
end