forked from robertwijas/UISS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUISS.podspec
More file actions
22 lines (16 loc) · 786 Bytes
/
UISS.podspec
File metadata and controls
22 lines (16 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'UISS'
s.version = '1.1.2'
s.platform = :ios, '5.0'
s.license = 'MIT'
s.summary = 'UIKit Style Sheets.'
s.homepage = 'https://github.com/robertwijas/UISS'
s.author = { 'Robert Wijas' => 'https://robertwijas.com' }
s.description = 'UISS stands for UIKit Style Sheets. UISS is an iOS library that provides you with a convenient way to define the style of your application. UISS is built on top of UIKit UIAppearance proxies.'
s.source = { :git => 'https://github.com/robertwijas/UISS.git', :tag => "#{s.version}" }
s.source_files = 'Project/UISS'
s.resources = 'Project/UISSResources.bundle'
s.prefix_header_file = 'Project/UISS/UISS-Prefix.pch'
s.frameworks = 'Foundation', 'UIKit'
s.requires_arc = true
end