class Neutron::FilePair

File pair

Attributes

source[R]
target[R]

Public Class Methods

new(source, target) click to toggle source
# File lib/neutron.rb, line 131
def initialize(source, target)
  @target = target
  @source = source
end

Public Instance Methods

expand() click to toggle source
# File lib/neutron.rb, line 135
def expand
  @target = File.expand_path(@target)
  @source = File.expand_path(@source)
  self
end