3
4
5
6
7
8
9
10
11
12
13
14
15
|
# File 'lib/covaio.rb', line 3
def _io_init
@dir_user_home = File.expand_path("~")
@dir_cova_home = File.expand_path("~/.cova")
@dir_cova_ios_mods_home = File.expand_path("~/.cocoapods/cova")
@dir_cocoapods_home = File.expand_path("~/.cocoapods")
@dir_xctool_home = File.expand_path("~/.cova/xctool")
@dir_xcode_build_home = File.expand_path("~/Library/Developer/Xcode/DerivedData")
@dir_cova_apps_home = File.expand_path("~/.cova/apps")
@repo_cova = "git://github.com/dancali/cova.git"
@repo_cova_ios_mods = "git://github.com/dancali/cova-ios-mods.git"
@repo_xctool = "git://github.com/facebook/xctool.git"
end
|