Class: GitWrapper::Commands::Commit

Inherits:
Git
  • Object
show all
Defined in:
lib/git_wrapper/commands/commit.rb

Instance Attribute Summary

Attributes inherited from Git

#error, #location_folder, #output

Instance Method Summary collapse

Methods inherited from Git

#execute, #initialize, #result, #success?

Constructor Details

This class inherits a constructor from GitWrapper::Commands::Git

Instance Method Details

#author(name, email) ⇒ Object



10
11
12
13
# File 'lib/git_wrapper/commands/commit.rb', line 10

def author(name, email)
  @author = "#{name} <#{email}>"
  self
end

#commandObject



15
16
17
# File 'lib/git_wrapper/commands/commit.rb', line 15

def command
  "commit -m \"#{@message}\" #{@author ? "--author \"#{@author}\"" : ''}"
end

#message(message) ⇒ Object



5
6
7
8
# File 'lib/git_wrapper/commands/commit.rb', line 5

def message(message)
  @message = message
  self
end