-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSZUtilities.podspec
More file actions
28 lines (28 loc) · 1.09 KB
/
Copy pathSZUtilities.podspec
File metadata and controls
28 lines (28 loc) · 1.09 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
Pod::Spec.new do |s|
s.name = "SZUtilities"
s.version = "0.0.1"
s.xcconfig = { 'SWIFT_VERSION' => '3.0' }
s.summary = "Utilities to simplify day to day problems"
s.description = "A library with customized extensions to simplify your code"
s.homepage = "http://www.stevenzweier.com"
s.license = 'MIT'
s.author = { "Steven Zweier" => "steve.zweier+utilities@me.com" }
s.source = { :git => "https://github.com/szweier/SZUtilities.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.subspec 'Movable' do |sp|
sp.source_files = 'SZUtilities/Classes/UIView/Movable'
end
s.subspec 'CornerRadius' do |sp|
sp.source_files = 'SZUtilities/Classes/UIView/CornerRadius'
end
s.subspec 'ProgressView' do |sp|
sp.source_files = 'SZUtilities/Classes/UIView/ProgressView'
end
s.subspec 'Tooltip' do |sp|
sp.source_files = 'SZUtilities/Classes/UIView/Tooltip'
end
s.subspec 'Animations' do |sp|
sp.source_files = 'SZUtilities/Classes/UIView/Animations'
end
end