Method: XCTasks::TestTask::Configuration#dup

Defined in:
lib/xctasks/test_task.rb

#dupObject

Deep copy any nested structures



167
168
169
170
171
172
# File 'lib/xctasks/test_task.rb', line 167

def dup
  copy = super
  copy.settings = settings.dup
  copy.destinations = destinations.dup
  return copy
end