Method: RunLoop::Environment.developer_dir

Defined in:
lib/run_loop/environment.rb

.developer_dirObject

Note:

Never call this directly. Always create an Xcode instance and allow it to derive the path to the Xcode toolchain.

Returns the value of DEVELOPER_DIR



84
85
86
87
88
89
90
91
# File 'lib/run_loop/environment.rb', line 84

def self.developer_dir
  value = ENV['DEVELOPER_DIR']
  if !value || value == ''
    nil
  else
    value
  end
end