class JekyllGitAuthors::Git::ExecutionError

Attributes

command[R]
stderr[R]
stdout[R]

Public Class Methods

new(command, stdout, stderr) click to toggle source
Calls superclass method
# File lib/jekyll-git-authors/git.rb, line 35
def initialize(command, stdout, stderr)
  @command = command
  @stdout = stdout
  @stderr = stderr

  super "Git command failed: '#{@command}', Git error message: #{@stderr}"
end