Method: RGen::Util::FileCacheMap#initialize

Defined in:
lib/rgen/util/file_cache_map.rb

#initialize(cache_dir, postfix) ⇒ FileCacheMap

cache_dir is the name of the subfolder where cache files are created postfix is an extension appended to the original file name for creating the name of the cache file



22
23
24
25
# File 'lib/rgen/util/file_cache_map.rb', line 22

def initialize(cache_dir, postfix)
  @postfix = postfix
  @cache_dir = cache_dir
end