-
Notifications
You must be signed in to change notification settings - Fork 76
/
NBUKit.podspec
52 lines (38 loc) · 1.74 KB
/
NBUKit.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
Pod::Spec.new do |s|
s.name = "NBUKit"
s.version = "2.5.1"
s.summary = "UIKit and NSFoundation convenience categories and subclasses."
s.homepage = "http://cyberagent.github.io/iOS-NBUKit/"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { "CyberAgent Inc." => "", "Ernesto Rivera" => "[email protected]" }
s.source = { :git => "https://github.com/CyberAgent/iOS-NBUKit.git", :tag => "#{s.version}" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.preserve_paths = "README.md", "NOTICE"
s.dependency 'NBUCore', '>= 2.1.0'
s.dependency 'Lockbox', '>= 3.0.3'
s.subspec 'Base' do |sub|
sub.source_files = 'Source/*.{h,m}'
end
s.subspec 'Additions' do |sub|
sub.source_files = 'Source/Additions/*.{h,m}'
sub.dependency 'NBUKit/Base'
end
s.subspec 'UI' do |sub|
sub.source_files = 'Source/UI/*.{h,m}', 'Library/NBUCompatibility/*.{h,m}'
sub.resource_bundle = { 'NBUKit' => ['Resources/*.{png,lproj}', 'Source/UI/*.{xib}'] }
sub.frameworks = 'MessageUI'
sub.dependency 'NBUKit/Additions'
sub.dependency 'NBUKit/Library/RestKitSupport'
sub.dependency 'MotionOrientation@PTEz', '>= 1.1.0'
end
s.subspec 'Library' do |sl|
sl.dependency 'NBUKit/Base'
sl.subspec 'RestKitSupport' do |srk|
srk.requires_arc = false
srk.source_files = 'Library/RestKit Support/*.{h,m}'
srk.frameworks = 'MobileCoreServices'
srk.preserve_paths = "README.*", "LICENSE"
end
end
end