Class: XclipBuffer

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/ompload.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeXclipBuffer

Returns a new instance of XclipBuffer.



9
10
11
# File 'lib/ompload.rb', line 9

def initialize
  @content = ''
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



7
8
9
# File 'lib/ompload.rb', line 7

def content
  @content
end

Instance Method Details

#append!(string) ⇒ Object



13
14
15
# File 'lib/ompload.rb', line 13

def append!(string)
  @content += "#{string}\n"
end