Class: Freyia::Automations::CreateLink

Inherits:
CreateFile show all
Defined in:
lib/freyia/automations/create_link.rb

Overview

CreateLink is a subset of CreateFile, which instead of taking a block of data, just takes a source string from the user.

Instance Attribute Summary collapse

Attributes inherited from EmptyDirectory

#base, #config, #destination, #given_destination, #relative_destination

Instance Method Summary collapse

Methods inherited from CreateFile

#initialize, #render

Methods inherited from EmptyDirectory

#initialize, #revoke!

Constructor Details

This class inherits a constructor from Freyia::Automations::CreateFile

Instance Attribute Details

#dataObject (readonly)

:nodoc:



30
31
32
# File 'lib/freyia/automations/create_link.rb', line 30

def data
  @data
end

Instance Method Details

#callObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/freyia/automations/create_link.rb', line 42

def call
  invoke_with_conflict_check do
    require "fileutils"
    FileUtils.mkdir_p(File.dirname(destination))
    # Create a symlink by default
    config[:symbolic] = true if config[:symbolic].nil?
    File.unlink(destination) if exists?
    if config[:symbolic]
      File.symlink(render, destination)
    else
      File.link(render, destination)
    end
  end
  given_destination
end

#exists?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/freyia/automations/create_link.rb', line 58

def exists?
  super || File.symlink?(destination)
end

#identical?Boolean

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.

Returns:

  • (Boolean)


37
38
39
40
# File 'lib/freyia/automations/create_link.rb', line 37

def identical?
  source = File.expand_path(render, File.dirname(destination))
  exists? && File.identical?(source, destination)
end