-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
GaugeKit.podspec
28 lines (26 loc) · 1.45 KB
/
GaugeKit.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
Pod::Spec.new do |s|
s.name = "GaugeKit"
s.version = "0.5.1"
s.summary = "Kit for building custom gauges + easy reproducible Apple's style ring gauges."
s.description = "Kit for building custom gauges + easy reproducible Apple's style ring gauges.
## Features
- Cusomizible
- Auto-resized
- Support `@IBInspectable` & `@IBDesignable`
- Written with vanilla swift flavor :wink:"
s.homepage = "https://github.com/skywinder/GaugeKit"
s.screenshots = ["https://raw.githubusercontent.com/skywinder/GaugeKit/master/Images/GaugeKit_sreenshot.png",
"https://raw.githubusercontent.com/skywinder/GaugeKit/master/Images/SWGauge_example.gif",
"https://raw.githubusercontent.com/skywinder/GaugeKit/master/Images/ib_example_1.gif"]
s.license = 'MIT'
s.author = { "Petr Korolev" => "[email protected]" }
s.source = { :git => "https://github.com/skywinder/GaugeKit.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/skywinder'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.swift_versions = ['4.0', '4.1', '4.2', '5.0']
s.source_files = 'GaugeKit/**/*.{h,m,swift}'
s.public_header_files = 'GaugeKit/**/*.h'
s.frameworks = 'UIKit', 'QuartzCore'
end