-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGaudi.podspec
29 lines (21 loc) · 1.02 KB
/
Gaudi.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
29
Pod::Spec.new do |s|
s.version = "1.0.0"
s.ios.deployment_target = '11.0'
s.name = "Gaudi"
s.summary = "A swift theming framework for UIKit for easy adoption of multi theme and iOS dark mode"
s.swift_version = '5.1'
s.description = <<-DESC
Gaudí is a framework for theme management in UIKit. It allows to easily swap themes in runtime, revert theming applied through UIAppearance proxies.
Gaudí also provides a DSL for UIAppearance rules and NSAttributedString.
This framework uses semantic colors names to better adapt to dark mode and other possible themes living within the same app.
DESC
s.requires_arc = true
s.license = { :type => "MIT" }
s.homepage = "https://www.pfrpg.net"
s.author = { "Giuseppe Lanza" => "[email protected]" }
s.source = {
:git => "https://github.com/gringoireDM/Gaudi.git",
:tag => s.version.to_s
}
s.source_files = "Sources/**/*.swift"
end