public Method

Sys.install(wildcard, dest_dir, mode)

Install all the files matching wildcard into the dest_dir directory. The permission mode is set to mode.

Source Code

# File rake/contrib/sys.rb, line 47
def install(wildcard, dest_dir, mode)
  Dir[wildcard].each do |fn|
    File.install(fn, dest_dir, mode, $verbose)
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.