Sha256: 2e3569a4120f50db62c2e81500e8f73c386f401e354aff58300a854a180a3d45
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 Bazaar < Nanoc::Extra::VCS # @see Nanoc::Extra::VCS#add def add(filename) system('bzr', 'add', filename) end # @see Nanoc::Extra::VCS#remove def remove(filename) system('bzr', 'rm', filename) end # @see Nanoc::Extra::VCS#move def move(src, dst) system('bzr', 'mv', src, dst) end end end
Version data entries
32 entries across 32 versions & 1 rubygems