1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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