-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfuikit.podspec
More file actions
51 lines (41 loc) · 1.98 KB
/
fuikit.podspec
File metadata and controls
51 lines (41 loc) · 1.98 KB
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
46
47
48
49
50
51
#
# Be sure to run `pod lib lint fuikit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'fuikit'
s.version = '0.1.5'
s.summary = 'fuikit makes standard iOS classes easy to use with FP patterns.'
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2']
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
fuikit makes standard iOS classes easy to use with Functional Programming by adding var function properties.
For instance, instead of subclassing UIViewController, you could use FUIViewController and set the onViewDidLoad property to whatever you'd like.
DESC
s.homepage = 'https://github.com/ThryvInc/fuikit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Elliot' => '' }
s.source = { :git => 'https://github.com/ThryvInc/fuikit.git', :tag => s.version.to_s, :submodules => true}
s.social_media_url = 'https://twitter.com/elliot_schrock'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/fuikit/Classes/**/*.swift'
s.resources = 'fuikit/**/*.xib'
s.dependency 'LithoOperators'
s.subspec 'Core' do |core|
core.source_files = 'Sources/fuikit/Classes/Core/**/*.swift'
core.resources = 'Sources/fuikit/Classes/Core/**/*.xib'
end
s.subspec 'CoreLocation' do |cll|
cll.source_files = 'Sources/fuikit/Classes/FCL/*.swift'
end
s.subspec 'CoreBluetooth' do |cb|
cb.source_files = 'Sources/fuikit/Classes/FCB/*.swift'
end
end