-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuitUp.podspec
More file actions
18 lines (16 loc) · 857 Bytes
/
SuitUp.podspec
File metadata and controls
18 lines (16 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'SuitUp'
s.version = '0.1.0'
s.summary = 'Easy to use and lightweight theme manager.'
s.description = <<-DESC
Easy to use and lightweight theme manager for iOS applications written in Swift with UIKit, but taking advantages of Objective-C reflection capabilities.
DESC
s.homepage = 'https://github.com/wupdigital/SuitUp'
s.screenshot = 'https://github.com/wupdigital/SuitUp/blob/master/Example/SuitUp.gif?raw=true'
s.license = { :type => 'Apache License, Version 2.0', :text => 'LICENSE' }
s.author = 'W.UP'
s.source = { :git => 'https://github.com/wupdigital/SuitUp.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'SuitUp/SuitUp/**/*.swift'
s.swift_versions = '5.1'
end