Method: Rex::PeParsey::PeBase#resources

Defined in:
lib/rex/peparsey/pebase.rb

#resourcesObject

We lazily parse the resources, and then cache them



1508
1509
1510
1511
1512
1513
1514
1515
# File 'lib/rex/peparsey/pebase.rb', line 1508

def resources
  if !_resources_cached
    _load_resources
    self._resources_cached = true
  end

  return self._resources_cache
end