Class: Perforce2Svn::Subversion::SvnCommitInfo
- Inherits:
-
Object
- Object
- Perforce2Svn::Subversion::SvnCommitInfo
- Defined in:
- lib/perforce2svn/subversion/svn_repo.rb
Overview
SvnRepo
Instance Attribute Summary collapse
-
#author ⇒ Object
readonly
Returns the value of attribute author.
-
#log ⇒ Object
readonly
Returns the value of attribute log.
-
#revision ⇒ Object
readonly
Returns the value of attribute revision.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Instance Method Summary collapse
-
#initialize(revision, author, timestamp, log) ⇒ SvnCommitInfo
constructor
A new instance of SvnCommitInfo.
Constructor Details
#initialize(revision, author, timestamp, log) ⇒ SvnCommitInfo
Returns a new instance of SvnCommitInfo.
149 150 151 152 153 154 |
# File 'lib/perforce2svn/subversion/svn_repo.rb', line 149 def initialize(revision, , , log) @revision = revision @author = @timestamp = @log = log end |
Instance Attribute Details
#author ⇒ Object (readonly)
Returns the value of attribute author.
147 148 149 |
# File 'lib/perforce2svn/subversion/svn_repo.rb', line 147 def @author end |
#log ⇒ Object (readonly)
Returns the value of attribute log.
147 148 149 |
# File 'lib/perforce2svn/subversion/svn_repo.rb', line 147 def log @log end |
#revision ⇒ Object (readonly)
Returns the value of attribute revision.
147 148 149 |
# File 'lib/perforce2svn/subversion/svn_repo.rb', line 147 def revision @revision end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
147 148 149 |
# File 'lib/perforce2svn/subversion/svn_repo.rb', line 147 def @timestamp end |