passepartout-apple/Podfile.include

20 lines
429 B
Plaintext
Raw Normal View History

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