Method: Base.set_paths

Defined in:
lib/whos_using_what/base.rb

.set_pathsObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/whos_using_what/base.rb', line 7

def self.set_paths
  $:.unshift(File.expand_path('../data_gatherers', __FILE__))
  $:.unshift(File.expand_path('../data_searchers', __FILE__))
  $:.unshift(File.expand_path('../api_clients', __FILE__))
  $:.unshift(File.expand_path('../no_sql', __FILE__))
  $:.unshift(File.expand_path('../util', __FILE__))
  $:.unshift(File.expand_path('../logging', __FILE__))

  @@paths_set = true
end