Class: GitHub::GitCommand
Instance Method Summary collapse
- #command(*args) ⇒ Object
-
#initialize(name) ⇒ GitCommand
constructor
A new instance of GitCommand.
Methods inherited from Command
#call, #current_user?, #die, #git, #git_exec, #github_token, #github_user, #helper, #options, #pgit, #run, #sh, #shell_user
Constructor Details
#initialize(name) ⇒ GitCommand
Returns a new instance of GitCommand.
121 122 123 |
# File 'lib/github/command.rb', line 121 def initialize(name) @name = name end |
Instance Method Details
#command(*args) ⇒ Object
125 126 127 |
# File 'lib/github/command.rb', line 125 def command(*args) git_exec [ @name, args ] end |