Stick with PIATunnel 1.1.2
It's the same commit, just versioned.
... | ... | @@ -32,7 +32,7 @@ end |
def library_by_version(version) | ||
$library_subspecs.each { |name| | ||
pod "#{$library_pod}/#{name}", "~> #{version}" | ||
pod "#{$library_pod}/#{name}", version | ||
} | ||
end | ||
... | ... | @@ -45,7 +45,7 @@ def tunnel_by_git(sha) |
end | ||
def tunnel_by_version(version) | ||
pod $tunnel_pod, "~> #{version}" | ||
pod $tunnel_pod, version | ||
end | ||
# Pod groups | ||
... | ... | @@ -54,7 +54,7 @@ def shared_main_pods |
pod 'AlamofireImage' | ||
#library_by_path('..') | ||
library_by_git('ab78a47') | ||
#library_by_version('1.1.1') | ||
#library_by_version('~> 1.1.1') | ||
end | ||
def app_pods | ||
... | ... | @@ -68,8 +68,8 @@ end |
def tunnel_pods | ||
#tunnel_by_path('..') | ||
tunnel_by_git('9ed3842') | ||
#tunnel_by_version('1.1.1') | ||
#tunnel_by_git('9ed3842') | ||
tunnel_by_version('= 1.1.2') | ||
end | ||
# Targets | ||
... | ... |
Please register or sign in to comment