public Method

Update.parse!(args)

There's no documentation for this item.

Source Code

# File commands/plugin.rb, line 791
def parse!(args)
  options.parse!(args)
  root = @base_command.environment.root
  cd root
  args = Dir["vendor/plugins/*"].map do |f|
    File.directory?("#{f}/.svn") ? File.basename(f) : nil
  end.compact if args.empty?
  cd "vendor/plugins"
  args.each do |name|
    if File.directory?(name)
      puts "Updating plugin: #{name}"
      system("svn #{$verbose ? '' : '-q'} up \"#{name}\" #{@revision ? "-r #{@revision}" : ''}")
    else
      puts "Plugin doesn't exist: #{name}"
    end
  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.