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