C# Class GitRocketFilter.RocketScriptBase

Base class for a script.
Show file Open project: xoofx/GitRocketFilter

Public Methods

Method Description
Map ( SimpleCommit commit ) : SimpleCommit

Maps the specified commit to an already mapped commit.

Simple ( Commit commit ) : SimpleCommit

Transforms a Commit object to a SimpleCommit.

Protected Methods

Method Description
RocketScriptBase ( RocketFilterApp rocketFilterApp ) : System

Initializes a new instance of the RocketScriptBase class.

Method Details

Map() public method

Maps the specified commit to an already mapped commit.
commit
public Map ( SimpleCommit commit ) : SimpleCommit
commit SimpleCommit The commit.
return SimpleCommit

RocketScriptBase() protected method

Initializes a new instance of the RocketScriptBase class.
protected RocketScriptBase ( RocketFilterApp rocketFilterApp ) : System
rocketFilterApp RocketFilterApp The rocket filter application.
return System

Simple() public method

Transforms a Commit object to a SimpleCommit.
commit
public Simple ( Commit commit ) : SimpleCommit
commit LibGit2Sharp.Commit The commit.
return SimpleCommit