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.



54
55
56
# File 'lib/trenni/buffer.rb', line 54

def initialize(path)
	@path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



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

def path
  @path
end

Instance Method Details

#encodingObject



68
69
70
# File 'lib/trenni/buffer.rb', line 68

def encoding
	read.encoding
end

#freezeObject



58
59
60
61
62
63
64
# File 'lib/trenni/buffer.rb', line 58

def freeze
	return self if frozen?
	
	read
	
	super
end

#readObject



72
73
74
# File 'lib/trenni/buffer.rb', line 72

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

#to_bufferObject



76
77
78
# File 'lib/trenni/buffer.rb', line 76

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