-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundationextensions.podspec
More file actions
59 lines (44 loc) · 1.84 KB
/
foundationextensions.podspec
File metadata and controls
59 lines (44 loc) · 1.84 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
52
53
54
55
56
57
58
59
#
# Be sure to run `pod lib lint foundationextensions.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 = 'foundationextensions'
s.version = '0.2.0'
s.summary = 'Helpful set of homemade Foundation extensions'
s.homepage = 'http://dashdevs.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dashdevs llc' => 'hello@dashdevs.com' }
s.source = { :git => 'https://github.com/itomych/foundationextensions.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.source_files = 'foundationextensions/Classes/**/*'
s.swift_version = '4.2'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'foundationextensions/Classes/*.{h,m,swift}'
end
s.subspec 'NSBundle' do |ss|
ss.source_files = 'foundationextensions/Classes/NSBundle+DDExtensions.{h,m}'
end
s.subspec 'NSString' do |ss|
ss.source_files = 'foundationextensions/Classes/NSString+DDExtensions.{h,m}'
end
s.subspec 'NSDictionary' do |ss|
ss.source_files = 'foundationextensions/Classes/NSDictionary+DDExtensions.{h,m}'
end
s.subspec 'NSURLRequest' do |ss|
ss.source_files = 'foundationextensions/Classes/NSURLRequest+DDExtensions.{h,m}'
end
s.subspec 'NSData' do |ss|
ss.source_files = 'foundationextensions/Classes/NSData+DDExtensions.{h,m}'
end
s.subspec 'NSFileManager' do |ss|
ss.source_files = 'foundationextensions/Classes/NSFileManager+DDExtensions.{h,m}'
end
s.subspec 'NSURLComponents' do |ss|
ss.source_files = 'foundationextensions/Classes/NSURLComponents+DDExtensions.{h,m}'
end
end