Method: Isolate::Git#source_path

Defined in:
lib/isolate/git.rb

#source_pathObject

Where to put the git repos.



83
84
85
86
87
88
89
90
91
92
93
# File 'lib/isolate/git.rb', line 83

def source_path
  src = File.join *[
    sandbox.path,
    ('..' if sandbox.multiruby?),
    'src'
  ].compact

  FileUtils.mkdir_p src

  src
end