Sha256: ff2850b23ac196b7ad5dcee9d3f50557bb619f821c6327360a21aabcd715c70e
Contents?: true
Size: 389 Bytes
Versions: 28
Compression:
Stored size: 389 Bytes
Contents
# encoding: utf-8 module Nanoc3::Extra::VCSes # @see Nanoc3::Extra::VCS class Dummy < Nanoc3::Extra::VCS # @see Nanoc3::Extra::VCS#add def add(filename) end # @see Nanoc3::Extra::VCS#remove def remove(filename) FileUtils.rm_rf(filename) end # @see Nanoc3::Extra::VCS#move def move(src, dst) FileUtils.move(src, dst) end end end
Version data entries
28 entries across 28 versions & 1 rubygems