Class: Nanoc3::Extra::VCSes::Dummy

Constants Inherited from Nanoc3::Plugin

MAP

Public Visibility

Public Class Methods Inherited from Nanoc3::Extra::VCS

identifier, identifiers, register

Public Class Methods Inherited from Nanoc3::Plugin

all, named

Public Instance Method Summary

#add(filename)
#move(src, dst)
#remove(filename)

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
Generated on Sunday, August 09 2009 at 01:43:15 PM by YARD 0.2.3.2 (ruby-1.8.7).