Class: Nanoc2::Extra::VCSes::Dummy

Inherits:
Nanoc2::Extra::VCS show all
Defined in:
lib/nanoc2/extra/vcses/dummy.rb

Constant Summary

Constants inherited from Plugin

Plugin::MAP

Instance Method Summary collapse

Methods inherited from Plugin

identifier, identifiers, named, register

Instance Method Details

#add(filename) ⇒ Object



7
8
# File 'lib/nanoc2/extra/vcses/dummy.rb', line 7

def add(filename)
end

#move(src, dst) ⇒ Object



14
15
16
# File 'lib/nanoc2/extra/vcses/dummy.rb', line 14

def move(src, dst)
  FileUtils.move(src, dst)
end

#remove(filename) ⇒ Object



10
11
12
# File 'lib/nanoc2/extra/vcses/dummy.rb', line 10

def remove(filename)
  FileUtils.rm_rf(filename)
end