-
Notifications
You must be signed in to change notification settings - Fork 70
/
cocoapods-binary-cache.gemspec
28 lines (23 loc) · 1.21 KB
/
cocoapods-binary-cache.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2019 Grabtaxi Holdings PTE LTE (GRAB), All rights reserved.
# Use of this source code is governed by an MIT-style license that can be found in the LICENSE file
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "cocoapods-binary-cache"
spec.version = File.read("VERSION")
spec.authors = ["Bang Nguyen"]
spec.email = ["[email protected]"]
spec.description = "Reduce build time by building pod frameworks and cache to remote storage, reuse on multiple machines"
spec.summary = "Reduce build time by building pod frameworks and cache to remote storage, reuse on multiple machines"
spec.homepage = "https://github.com/grab/cocoapods-binary-cache"
spec.license = "MIT"
spec.files = Dir["lib/**/*"]
spec.require_paths = ["lib"]
spec.add_dependency "cocoapods", ">= 1.5.0"
spec.add_dependency "fourflusher", "~> 2.0"
spec.add_dependency "rgl", "~> 0.5.6"
spec.add_dependency "xcpretty", "~> 0.3.0"
spec.add_dependency "parallel", "~> 1.0"
spec.add_development_dependency "bundler", ">= 1.3"
spec.add_development_dependency "rake", "~> 10.0"
end