This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
forked from FormatterKit/FormatterKit
-
Notifications
You must be signed in to change notification settings - Fork 5
/
FormatterKit.podspec
75 lines (62 loc) · 2.64 KB
/
FormatterKit.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Pod::Spec.new do |s|
s.name = 'FormatterKit'
s.version = '1.9.0'
s.license = { :type => 'MIT' }
s.summary = '`stringWithFormat:` for the sophisticated hacker set.'
s.homepage = 'https://github.com/FormatterKit/FormatterKit'
s.social_media_url = 'https://twitter.com/mattt'
s.author = { 'Mattt' => 'mattt@me.com' }
s.source = { :git => 'https://github.com/FormatterKit/FormatterKit.git',
:tag => s.version
}
s.description = "FormatterKit is a collection of well-crafted NSFormatter subclasses for things like units of information, distance, and relative time intervals. Each formatter abstracts away the complex business logic of their respective domain, so that you can focus on the more important aspects of your application."
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.subspec 'Resources' do |ss|
ss.resources = 'FormatterKit/FormatterKit.bundle'
ss.source_files = 'FormatterKit/NSBundle+FormatterKit.{h,m}'
end
s.subspec 'AddressFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTAddressFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
ss.osx.frameworks = 'AddressBook'
ss.ios.frameworks = 'AddressBook', 'AddressBookUI'
end
s.subspec 'ArrayFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTArrayFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
s.subspec 'ColorFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTColorFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
s.subspec 'LocationFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTLocationFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
ss.frameworks = 'CoreLocation'
end
s.subspec 'NameFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTNameFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
ss.ios.frameworks = 'AddressBook'
end
s.subspec 'OrdinalNumberFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTOrdinalNumberFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
s.subspec 'TimeIntervalFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTTimeIntervalFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
s.subspec 'UnitOfInformationFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTUnitOfInformationFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
s.subspec 'URLRequestFormatter' do |ss|
ss.source_files = 'FormatterKit/TTTURLRequestFormatter.{h,m}'
ss.dependency 'FormatterKit/Resources'
end
end