-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDUIToolbox.podspec
More file actions
27 lines (23 loc) · 953 Bytes
/
DUIToolbox.podspec
File metadata and controls
27 lines (23 loc) · 953 Bytes
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
Pod::Spec.new do |s|
s.name = "DUIToolbox"
s.version = "0.3"
s.summary = "The DUIToolbox is a mini library of classes useful for iOS UIKit developers."
s.homepage = "https://github.com/czechboy0/DUIToolbox"
s.license = 'MIT'
s.author = { "Honza Dvorsky" => "http://honzadvorsky.com" }
s.source = { :git => "https://github.com/czechboy0/DUIToolbox.git", :tag => s.version.to_s }
s.social_media_url = "http://twitter.com/czechboy0"
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.subspec 'UIKitPlus' do |ui|
ui.source_files = 'Classes/UIKitPlus/**/*.{h,m}'
ui.frameworks = 'UIKit'
ui.public_header_files = 'Classes/UIKitPlus/**/*.{h}'
end
s.subspec 'FoundationPlus' do |ns|
ns.source_files = 'Classes/FoundationPlus/*.{h,m}'
ns.frameworks = 'Foundation'
ns.public_header_files = 'Classes/FoundationPlus/**/*.{h}'
end
end