passepartout-apple/Podfile.include
Davide De Rosa 87527ed290 Upgrade to TunnelKit 2.0
Major reorganization. No changes in logic.

Rename by_* to pod_*.
2019-05-25 18:29:10 +02:00

20 lines
429 B
Plaintext

$git_root = "https://github.com/passepartoutvpn"
def pod_version(name, specs, version)
specs.each { |s|
pod "#{name}/#{s}", version
}
end
def pod_git(name, specs, sha)
specs.each { |s|
pod "#{name}/#{s}", :git => "#{$git_root}/#{name.downcase}", :commit => sha
}
end
def pod_path(name, specs, root)
specs.each { |s|
pod "#{name}/#{s}", :path => "#{root}/#{name.downcase}"
}
end