class Neutron::FilePairList

Small extension for array which is developed to be used in Neutron.files()

Public Instance Methods

sources() click to toggle source

@return [Array<String>]

# File lib/neutron.rb, line 68
def sources
  self.map do |i|
    i.source
  end
end
targets() click to toggle source

@return [Array<String>]

# File lib/neutron.rb, line 74
def targets
  self.map do |i|
    i.target
  end
end