-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUICircleView.podspec
More file actions
27 lines (17 loc) · 833 Bytes
/
UICircleView.podspec
File metadata and controls
27 lines (17 loc) · 833 Bytes
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
Pod::Spec.new do |s|
s.name = "UICircleView"
s.version = "1.0.1"
s.summary = "A UIView that clip to Circle and restrict the UIEvent in its radius."
s.description = <<-DESC
A UIView that clip to Circle and restrict the UIEvent in its radius. Typical use for a Circle control panel.
DESC
s.homepage = "https://github.com/kidyoungx/UICircleView"
s.license = "MPL-2.0"
s.author = { "Kid Young" => "kidyoungx@gmail.com" }
s.platform = :ios, "5.0"
s.source = { :git => "https://github.com/kidyoungx/UICircleView.git", :tag => "#{s.version}" }
s.source_files = "UICircleView", "UICircleView/**/*.{h,m}"
s.exclude_files = "SampleUICircleView"
s.public_header_files = "UICircleView/**/*.h"
s.requires_arc = true
end