Class: UnpackStrategy::Cvs

Inherits:
Directory show all
Defined in:
unpack_strategy/cvs.rb

Overview

Strategy for unpacking CVS repositories.

Instance Attribute Summary

Attributes included from UnpackStrategy

#merge_xattrs, #path

Class Method Summary collapse

Methods inherited from Directory

extensions

Methods included from UnpackStrategy

#dependencies, detect, #each_directory, #extract, #extract_nestedly, from_extension, from_magic, from_type, #initialize

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Class Method Details

.can_extract?(path) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'unpack_strategy/cvs.rb', line 9

def self.can_extract?(path)
  super && (path/"CVS").directory?
end