Method: FileSystem::Adapter#method_missing

Defined in:
lib/filesystem.rb

#method_missing(sym, *args) ⇒ Object



78
79
80
81
82
83
84
# File 'lib/filesystem.rb', line 78

def method_missing( sym, *args )
	if @@delegated_methods.include?( sym )
		get_node( args.first ).send( sym )
	else
		super
	end
end