-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathJEToolkit.podspec
45 lines (39 loc) · 1.71 KB
/
JEToolkit.podspec
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "JEToolkit"
s.version = "3.5.0"
s.swift_version = "4.1"
s.summary = "iOS Utilities"
s.homepage = "https://github.com/JohnEstropia/JEToolkit"
s.license = 'MIT'
s.author = { "John Rommel Estropia" => "[email protected]" }
s.source = { :git => "https://github.com/JohnEstropia/JEToolkit.git",
:tag => "#{s.version}",
:submodules => true }
s.platform = :ios, '8.0'
s.public_header_files = "#{s.name}/*.h"
s.source_files = "#{s.name}/JEToolkit.h"
s.ios.deployment_target = '8.0'
s.ios.frameworks = 'Foundation', 'MobileCoreServices', 'UIKit'
s.requires_arc = true
s.subspec "JEToolkit" do |ss|
ss.source_files = "#{s.name}/JEToolkit/**/*.{h,m,c,swift}"
ss.ios.frameworks = 'Foundation', 'MobileCoreServices', 'UIKit'
end
s.subspec "JEDebugging" do |ss|
ss.source_files = "#{s.name}/JEDebugging/**/*.{h,m,c,swift}"
ss.ios.frameworks = 'Foundation', 'UIKit', 'MessageUI'
ss.dependency "#{s.name}/JEToolkit"
end
s.subspec "JESettings" do |ss|
ss.source_files = "#{s.name}/JESettings/**/*.{h,m,c}"
ss.ios.frameworks = 'Foundation'
end
s.subspec "JEOrderedDictionary" do |ss|
ss.source_files = "#{s.name}/JEOrderedDictionary/**/*.{h,m,c}"
ss.ios.frameworks = 'Foundation'
end
s.subspec "JEWeakCache" do |ss|
ss.source_files = "#{s.name}/JEWeakCache/**/*.{h,m,c}"
ss.ios.frameworks = 'Foundation'
end
end