Method: Puppet::FileSystem::FileImpl#open

Defined in:
lib/puppet/file_system/file_impl.rb

#open(path, mode, options, &block) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



31
32
33
# File 'lib/puppet/file_system/file_impl.rb', line 31

def open(path, mode, options, &block)
  ::File.open(path, options, mode, &block)
end