Class: Gollum::Git::Actor
- Inherits:
-
Object
- Object
- Gollum::Git::Actor
- Defined in:
- lib/rjgit_adapter/git_layer_rjgit.rb
Instance Attribute Summary collapse
-
#actor ⇒ Object
readonly
Returns the value of attribute actor.
-
#email ⇒ Object
Returns the value of attribute email.
-
#name ⇒ Object
Returns the value of attribute name.
-
#time ⇒ Object
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize(name, email, time = nil) ⇒ Actor
constructor
A new instance of Actor.
- #output(time) ⇒ Object
Constructor Details
#initialize(name, email, time = nil) ⇒ Actor
Returns a new instance of Actor.
36 37 38 39 40 41 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 36 def initialize(name, email, time = nil) @name = name @email = email @time = time @actor = RJGit::Actor.new(name, email, time) end |
Instance Attribute Details
#actor ⇒ Object (readonly)
Returns the value of attribute actor.
34 35 36 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 34 def actor @actor end |
#email ⇒ Object
Returns the value of attribute email.
33 34 35 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 33 def email @email end |
#name ⇒ Object
Returns the value of attribute name.
33 34 35 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 33 def name @name end |
#time ⇒ Object
Returns the value of attribute time.
33 34 35 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 33 def time @time end |
Instance Method Details
#output(time) ⇒ Object
43 44 45 |
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 43 def output(time) @actor.output(time) end |