-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOFA.podspec
41 lines (36 loc) · 1.22 KB
/
HOFA.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
Pod::Spec.new do |s|
s.name = "HOFA"
s.version = "1.0.5"
s.summary = "A lightweight Objective-C high-order functions library."
s.description = <<-DESC
HOFA is an array-related tool, including safe operation of arrays and custom high-order functions.
DESC
s.homepage = "https://github.com/Janyau/HOFA"
s.license = "MIT"
s.author = { "Janyau" => "[email protected]" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/Janyau/HOFA.git", :tag => "#{s.version}" }
s.source_files = "HOFA/hofa.h"
s.frameworks = "Foundation"
s.requires_arc = true
s.subspec 'Safe' do |ss|
ss.source_files = 'HOFA/Safe/*.{h,m}'
ss.frameworks = 'Foundation'
ss.ios.deployment_target = '9.0'
end
s.subspec 'Timer' do |ss|
ss.source_files = 'HOFA/Timer/*.{h,m}'
ss.frameworks = 'Foundation'
ss.ios.deployment_target = '9.0'
end
s.subspec 'Throttle' do |ss|
ss.source_files = 'HOFA/Throttle/*.{h,m}'
ss.frameworks = 'Foundation'
ss.ios.deployment_target = '9.0'
end
s.subspec 'ProtoType' do |ss|
ss.source_files = 'HOFA/ProtoType/*.{h,m}'
ss.frameworks = 'Foundation'
ss.ios.deployment_target = '9.0'
end
end