forked from konoma/fps-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FPSCounter.podspec
54 lines (28 loc) · 2.55 KB
/
FPSCounter.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "FPSCounter"
s.version = "2.1.0"
s.homepage = "https://github.com/konoma/fps-counter"
s.summary = "A small library to measure the frame rate of an iOS Application."
s.description = <<-DESC
FPSCounter is a small library to measure the frame rate of an iOS Application.
You can display the current frames per second in the status bar with a single line.
Or if you'd like more control, you can have your own code notified of FPS changes
and display it as needed.
DESC
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Markus Gasser" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/konoma/fps-counter.git", :tag => "2.1.0" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Sources/**/*.{swift,h,m}"
s.public_header_files = "Sources/**/*.h"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.frameworks = "Foundation", "UIKit"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end