Sha256: 96f936ab6d23a06667ba3f0e04adaf7758d32694cfe30396e7c457a2349b2e27
Contents?: true
Size: 440 Bytes
Versions: 28
Compression:
Stored size: 440 Bytes
Contents
# encoding: utf-8 module Nanoc3::Extra::VCSes # @see Nanoc3::Extra::VCS class Subversion < Nanoc3::Extra::VCS # @see Nanoc3::Extra::VCS#add def add(filename) system('svn', 'add', filename) end # @see Nanoc3::Extra::VCS#remove def remove(filename) system('svn', 'rm', filename) end # @see Nanoc3::Extra::VCS#move def move(src, dst) system('svn', 'mv', src, dst) end end end
Version data entries
28 entries across 28 versions & 1 rubygems