Method: Funit::Depend#initialize

Defined in:
lib/funit/fortran_deps.rb

#initialize(searchPath = %w[ ../lib . ] ) ⇒ Depend

Returns a new instance of Depend.



21
22
23
24
25
26
# File 'lib/funit/fortran_deps.rb', line 21

def initialize( searchPath = %w[ ../lib . ] )
  @parsed = Array.new
  @hash = build_hash_of_modules_in_files_within searchPath
  @file_dependencies = Hash.new
  @source_files = Array.new
end