-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftyAppearance.podspec
28 lines (25 loc) · 1.3 KB
/
SwiftyAppearance.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
#
# Be sure to run `pod lib lint SwiftyAppearance.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftyAppearance'
s.version = '1.1.0'
s.summary = 'Declarative approach to UIAppearance.'
s.description = <<-DESC
UIAppearance allows to set up global application look and feed in a single centralized location instead of
spreading bits of design across different classes, xibs and storyboards.
SwiftyAppearance adds a little bit of style to this approach.
DESC
s.homepage = 'https://github.com/victor-pavlychko/SwiftyAppearance'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Victor Pavlychko' => '[email protected]' }
s.source = { :git => 'https://github.com/victor-pavlychko/SwiftyAppearance.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/victorpavlychko'
s.ios.deployment_target = '9.0'
s.source_files = 'SwiftyAppearance/**/*'
s.frameworks = 'UIKit'
end