Parent

Object

Public Class Methods

new(*args) click to toggle source
# File lib/openshift-origin-common/utils/file_needs_sync.rb, line 47
def new(*args)
  f=new_needs_sync(*args)
  f.sync=true
  f
end
Also aliased as: new_needs_sync
new_needs_sync(*args) click to toggle source
Alias for: new
open(*args) click to toggle source
# File lib/openshift-origin-common/utils/file_needs_sync.rb, line 34
def open(*args)
  if block_given?
    open_needs_sync(*args) do |f|
      f.sync=true
      yield(f)
    end
  else
    f=open_needs_sync(*args)
    f.sync=true
    f
  end
end
Also aliased as: open_needs_sync
open_needs_sync(*args) click to toggle source
Alias for: open

[Validate]

Generated with the Darkfish Rdoc Generator 2.