Method: XcodeMove::ProjectCache.open

Defined in:
lib/xcmv/project_cache.rb

.open(path) ⇒ Object



6
7
8
9
# File 'lib/xcmv/project_cache.rb', line 6

def self.open(path)
  path = Pathname.new(path).realpath
  @@cache[path] ||= Xcodeproj::Project.open(path)
end