Sha256: f1b6ff257af3372b37889ce995ecd1aa40207a755b3ae898d7a22acac6c50342
Contents?: true
Size: 430 Bytes
Versions: 32
Compression:
Stored size: 430 Bytes
Contents
# encoding: utf-8 module Nanoc::Extra::VCSes # @see Nanoc::Extra::VCS class Mercurial < Nanoc::Extra::VCS # @see Nanoc::Extra::VCS#add def add(filename) system('hg', 'add', filename) end # @see Nanoc::Extra::VCS#remove def remove(filename) system('hg', 'rm', filename) end # @see Nanoc::Extra::VCS#move def move(src, dst) system('hg', 'mv', src, dst) end end end
Version data entries
32 entries across 32 versions & 1 rubygems