-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDRYUtilities.podspec
50 lines (41 loc) · 1.48 KB
/
DRYUtilities.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
#
# Be sure to run `pod lib lint DRYUtilities.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "DRYUtilities"
s.version = "2.1.0"
s.summary = "DRYUtilities provides common utilities used in projects by AppFoundry"
s.homepage = "https://github.com/appfoundry/DRYUtilities"
s.license = 'MIT'
s.author = { "Michael Seghers" => "[email protected]" }
s.source = { :git => "https://github.com/appfoundry/DRYUtilities.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/AppFoundryBE'
s.platform = :ios, '7.0'
s.requires_arc = true
s.subspec 'Configuration' do |ss|
ss.source_files = 'Pod/Classes/Configuration/**/*'
end
s.subspec 'CoreData' do |ss|
ss.source_files = 'Pod/Classes/CoreData/**/*'
ss.weak_framework = 'CoreData'
end
s.subspec 'Foundation' do |ss|
ss.source_files = 'Pod/Classes/Foundation/**/*'
end
s.subspec 'Networking' do |ss|
ss.source_files = 'Pod/Classes/Networking/**/*'
end
s.subspec 'Security' do |ss|
ss.source_files = 'Pod/Classes/Security/**/*'
end
s.subspec 'UIKit' do |ss|
ss.source_files = 'Pod/Classes/UIKit/**/*'
ss.weak_framework = 'UIKit'
end
s.frameworks = 'Foundation'
end