- Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPure.podspec
More file actions
Latest commit
27 lines (23 loc) · 847 Bytes
/
Copy pathPure.podspec
File metadata and controls
27 lines (23 loc) · 847 Bytes
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
Pod::Spec.newdo |s|
s.name="Pure"
s.version="1.1.4"
s.summary="Pure DI for Swift"
s.homepage="https://github.com/devxoul/Pure"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Suyeol Jeon"=>"devxoul@gmail.com"}
s.source={:git=>"https://github.com/devxoul/Pure.git",
:tag=>s.version.to_s}
s.swift_version="5.0"
s.ios.deployment_target="8.0"
s.osx.deployment_target="10.11"
s.tvos.deployment_target="9.0"
s.watchos.deployment_target="2.0"
s.default_subspec="Core"
s.subspec"Core"do |ss|
ss.source_files="Sources/Pure/**/*.{swift,h,m}"
end
s.subspec"Stub"do |ss|
ss.source_files="Sources/PureStub/**/*.{swift,h,m}"
ss.dependency"Pure/Core"
end
end