forked from morizotter/TouchVisualizer
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTouchVisualizer.podspec
More file actions
Latest commit
35 lines (31 loc) · 1.53 KB
/
Copy pathTouchVisualizer.podspec
File metadata and controls
35 lines (31 loc) · 1.53 KB
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
30
31
32
33
34
35
#
# Be sure to run `pod lib lint MZRPresentationKit.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.newdo |s|
s.name="TouchVisualizer"
s.version="3.0.2"
s.summary="Effective presentation with TouchVisualizer!"
s.description=<<-DESC
TouchVisualizer is a lightweight and pure Swift implemented library for visualizing touches on the screen. Let's give an effective presentation with TouchVisualizer!
- Works with just a single line of code!
- Multiple fingers supported.
- Multiple UIWindows supported.
- Shows touch radius.
- Shows touch duration.
- You can change colors and images of finger points.
- iPhone and iPad with portlait and landscape supported.
DESC
s.homepage="https://github.com/morizotter/TouchVisualizer"
s.license='MIT'
s.author={"Naoki Morita"=>"namorit@gmail.com"}
s.source={:git=>"https://github.com/morizotter/TouchVisualizer.git",:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/morizotter'
s.platform=:ios,'9.0'
s.requires_arc=true
s.source_files='TouchVisualizer/**/*.swift'
end