mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 19:02:37 +00:00
87527ed290
Major reorganization. No changes in logic. Rename by_* to pod_*.
20 lines
429 B
Plaintext
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
|