Updated build number
Showing
This diff is collapsed.
... | ... | @@ -13,6 +13,7 @@ inhibit_all_warnings! |
# Libraries | ||
$git_root = "https://github.com/pia-foss" | ||
$git_root_purism = "https://source.puri.sm/liberty/tunnel" | ||
$gitlab_vpn_root = "git@codex.londontrustmedia.com:ios" | ||
$gitlab_kn_root = "git@codex.londontrustmedia.com:mobile" | ||
... | ... | @@ -57,6 +58,12 @@ def library_by_tag(tag) |
} | ||
end | ||
def library_by_tag_purisms(tag) | ||
$library_subspecs.each { |name| | ||
pod "#{$library_pod}/#{name}", :git => "#{$git_root_purism}/#{$library_repo_purism}", :tag => tag | ||
} | ||
end | ||
def library_by_gitlab_branch(branch) | ||
$library_subspecs.each { |name| | ||
pod "#{$library_pod}/#{name}", :git => "#{$gitlab_vpn_root}/#{$library_gitlab_repo}", :branch => branch | ||
... | ... | @@ -81,8 +88,9 @@ def shared_main_pods |
pod 'AlamofireImage' | ||
pod "PIAAccountModule", :git => "#{$git_root}/#{$accounts_repo}", :tag => "v1.1.0" | ||
pod "PIARegions", :git => "#{$git_root}/#{$regions_repo}", :tag => "v1.1.0" | ||
# library_by_tag("v2.9.0") # cb5134e' | ||
library_by_path_purism('/Users/tom'); | ||
library_by_tag_purisms('1.0.0'); | ||
# library_by_path_purism('/Users/tom'); | ||
end | ||
def app_pods | ||
... | ... |
Please register or sign in to comment