forked from zackhsuan/ZKPulseView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZKPulseView.podspec
27 lines (20 loc) · 1.05 KB
/
ZKPulseView.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
Pod::Spec.new do |s|
s.name = "ZKPulseView"
s.version = "0.0.4"
s.summary = "Simple iOS UIView Category to create a Pulse (Breathing light) Effect on your needs"
s.author = { "Zack Chung" => "zackhsuan@gmail.com" }
s.license = { :type => "MIT", :file => "LICENSE" }
s.description = <<-DESC
Display a pulse within a UIView
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/Oggerschummer/ZKPulseView"
s.platform = :ios
s.source = { :git => "https://github.com/Oggerschummer/ZKPulseView.git", :tag => "0.0.4" }
s.source_files = 'ZKPulseView/Class/**/*.{c,h,hh,m,mm}'
s.frameworks = "Foundation", "UIKit", "MessageUI"
s.requires_arc = true
end