class ProjectCache
Public Class Methods
new(base_path)
click to toggle source
# File lib/project_cache.rb, line 6 def initialize(base_path) @base_path = base_path end
Public Instance Methods
cache_path(key)
click to toggle source
# File lib/project_cache.rb, line 10 def cache_path(key) File.join(@base_path, Cache.cache_path(key)) end