class Templater::Actions::Directory

Public Instance Methods

identical?() click to toggle source

Checks if the content of the file at the destination is identical to the rendered result.

Returns

Boolean

true if it is identical, false otherwise.

# File lib/templater/actions/directory.rb, line 17
def identical?
  exists?
end
render() click to toggle source

Returns empty string

Returns

String

Empty string.

# File lib/templater/actions/directory.rb, line 9
def render
  ""
end