Skip to content
This repository was archived by the owner on Apr 19, 2018. It is now read-only.

delete incorrect comment #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lib/grit/git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,6 @@ def apply_patch(options={}, head_sha=nil, patch=nil)
# Optionally yields to the block an IO object attached to the child
# process's STDIN.
#
# Examples
# git.native(:rev_list, {:max_count => 10, :header => true}, "master")
#
# Returns a String with all output written to the child process's stdout
# when the :process_info option is not set.
# Returns a [exitstatus, out, err] tuple when the :process_info option is
Expand Down Expand Up @@ -364,9 +361,6 @@ def native(cmd, options = {}, *args, &block)

# Methods not defined by a library implementation execute the git command
# using #native, passing the method name as the git command name.
#
# Examples:
# git.rev_list({:max_count => 10, :header => true}, "master")
def method_missing(cmd, options={}, *args, &block)
native(cmd, options, *args, &block)
end
Expand Down