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



156
157
158
159
160
161
162
163
# File 'lib/run_loop/environment.rb', line 156

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