Class: Gollum::Git::Actor

Inherits:
Object
  • Object
show all
Defined in:
lib/rjgit_adapter/git_layer_rjgit.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, email) ⇒ Actor

Returns a new instance of Actor.



37
38
39
40
41
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 37

def initialize(name, email)
  @name = name
  @email = email
  @actor = RJGit::Actor.new(name, email)
end

Instance Attribute Details

#actorObject (readonly)

Returns the value of attribute actor.



35
36
37
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 35

def actor
  @actor
end

#emailObject

Returns the value of attribute email.



34
35
36
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 34

def email
  @email
end

#nameObject

Returns the value of attribute name.



34
35
36
# File 'lib/rjgit_adapter/git_layer_rjgit.rb', line 34

def name
  @name
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