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