module Nanoc::VCSes

class Mercurial < Nanoc::VCS

identifiers :mercurial, :hg

def add(filename)
system('hg', 'add', filename)
end

def remove(filename)
system('hg', 'rm', filename)
end

def move(src, dst)
system('hg', 'mv', src, dst)
end

end

end