Class: Module

Inherits:
Object show all
Defined in:
lib/quick/core_ext.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#quick_instanceObject



12
13
14
# File 'lib/quick/core_ext.rb', line 12

def quick_instance
	@quick_instance ||= Object.new.extend self
end

Instance Method Details

#code_filesObject



16
17
18
19
20
# File 'lib/quick/core_ext.rb', line 16

def code_files
	@code_files ||= Hash.new do |h, k|
		h[k] = Quick::FS::CodeFile.new self, k
	end
end