module Hoe::MercurialHelpers
def make_commit_log
## Generate a commit log from a diff and return it as a String. At the moment it just
def make_commit_log diff = read_command_output( 'hg', 'diff' ) fail "No differences." if diff.empty? return diff end