NAME
VCI::Abstract::File - A single file in the repository.
DESCRIPTION
This represents a file in the repository. It implements VCI::Abstract::Committable, so all of those methods are available on a File in addition to the methods listed below.
METHODS
Accessors
These are methods you call to get information about a File. They are all read-only--you cannot update a File's information using this interface.
content
-
Returns the content of this file as a string, according to its specified "revision".
content_size
-
The size of the File's "content", in bytes.
is_executable
-
1
if this file is tagged as an executable by the VCS,0
if it is not. If the VCS doesn't track this info, this returnsundef
.
CLASS METHODS
Constructors
Usually you won't construct an instance of this class directly, but instead, use various methods of other modules that create File objects by interacting with the Project.
new
-
Takes all "Accessors" of this class and VCI::Abstract::Committable, as named parameters. The following fields are required: path and project.
If you don't specify revision, VCI assumes you want an object representing the "latest" or "HEAD" revision of this File.