Class: DoraBox::XcodeOperator

Inherits:
Object
  • Object
show all
Defined in:
lib/doraBox/util/xcode_operator.rb

Class Method Summary collapse

Class Method Details

.open_xcworkspace(path) ⇒ Object

打开项目工程



8
9
10
11
12
13
14
15
16
# File 'lib/doraBox/util/xcode_operator.rb', line 8

def open_xcworkspace(path)

  # close Xcode
  system "pkill Xcode"

  sleep 0.5
  # open 项目
  `open #{path}/*.xcworkspace`
end