-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCrystal.podspec
29 lines (21 loc) · 1.57 KB
/
Crystal.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 |spec|
spec.name = "Crystal"
spec.version = "1.1.0"
spec.summary = "A lightweight and intuitive theme manager for iOS."
spec.description = <<-DESC
Crystal is a lightweight and intuitive theme manager for iOS. It takes advantage of Swift’s features to provide an easy-to-use interface. With Crystal, you can integrate themes into your app with confidence and flexibility.
- **Flexible**: Crystal is compitible with any object, not just built-in UI components. You can use Crystal anywhere.
- **Friendly**: Apply themes in a way you're familiar with, and no additional property APIs will make you confused and distracted.
- **Simple**: Adding a theme is as simple as creating an instance. It's easy to maintain your themes with Crystal.
- **Type Safe**: Take full advantage of swift's type safety. Apply your theme with confidence and benefit from compile-time check.
DESC
spec.homepage = "https://github.com/yunhao/Crystal"
spec.screenshots = "https://raw.githubusercontent.com/yunhao/Crystal/master/Resources/logo.png"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Rhett Tuan" => "rhetttuan@gmail.com" }
spec.swift_versions = ['5.2']
spec.ios.deployment_target = "10.0"
spec.source = { :git => "https://github.com/yunhao/Crystal.git", :tag => "v#{spec.version}" }
spec.source_files = "Sources", "Sources/**/*.{h,m}"
spec.requires_arc = true
end