class Blockbuster::Master

Master file object

Attributes

configuration[R]
file_name[R]

Public Class Methods

new(comparator, configuration) click to toggle source
# File lib/blockbuster/master.rb, line 9
def initialize(comparator, configuration)
  @configuration = configuration
  @comparator    = comparator
  @file_name     = configuration.master_tar_file
end

Public Instance Methods

file_path() click to toggle source

read path

# File lib/blockbuster/master.rb, line 16
def file_path
  configuration.master_tar_file_path
end
target_path() click to toggle source

write path (master will always write to the same file name)

# File lib/blockbuster/master.rb, line 21
def target_path
  file_path
end