Class: Nanoc3::Extra::VCSes::Dummy
- Nanoc3::Plugin
- Nanoc3::Extra::VCS
- Nanoc3::Extra::VCSes::Dummy
Constants Inherited from Nanoc3::Plugin
Public Visibility
Public Class Methods Inherited from Nanoc3::Extra::VCS
Public Class Methods Inherited from Nanoc3::Plugin
Public Instance Method Details
add
public
add(filename)
[View source]
7 8 |
# File 'lib/nanoc3/extra/vcses/dummy.rb', line 7 def add(filename) end |
move
public
move(src, dst)
[View source]
14 15 16 |
# File 'lib/nanoc3/extra/vcses/dummy.rb', line 14 def move(src, dst) FileUtils.move(src, dst) end |
remove
public
remove(filename)
[View source]
10 11 12 |
# File 'lib/nanoc3/extra/vcses/dummy.rb', line 10 def remove(filename) FileUtils.rm_rf(filename) end |