Class: Trenni::FileBuffer

Inherits:
Object
  • Object
show all
Defined in:
lib/trenni/buffer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ FileBuffer

Returns a new instance of FileBuffer.



48
49
50
# File 'lib/trenni/buffer.rb', line 48

def initialize(path)
	@path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



60
61
62
# File 'lib/trenni/buffer.rb', line 60

def path
  @path
end

Instance Method Details

#freezeObject



52
53
54
55
56
57
58
# File 'lib/trenni/buffer.rb', line 52

def freeze
	return self if frozen?
	
	read
	
	super
end

#readObject



62
63
64
# File 'lib/trenni/buffer.rb', line 62

def read
	@cache ||= File.read(@path).freeze
end

#to_bufferObject



66
67
68
# File 'lib/trenni/buffer.rb', line 66

def to_buffer
	Buffer.new(self.read, @path)
end