-
Notifications
You must be signed in to change notification settings - Fork 102
/
RunTrace.podspec
24 lines (20 loc) · 1019 Bytes
/
RunTrace.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
Pod::Spec.new do |s|
s.name = "RunTrace"
s.version = "1.2"
s.summary = "RunTrace tracks every UI element, including origin, bounds, frame, superview, subview etc."
s.description = <<-DESC
RunTrace using Method Swizzling to require coordinates of a view
before shown on the screen. Feel free to use RunTrace to track
information about an UI element.Just like reveal but more powerful
and the best part is that you can have all of this with just one
line in your code.
DESC
s.homepage = "https://github.com/sx1989827/RunTrace"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "sx1989827" => "" }
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/sx1989827/RunTrace.git", :tag => '1.2'}
s.source_files = "RunTrace/RunTrace/*.{h,m}"
s.resources = "RunTrace/RunTrace/*.xib"
s.requires_arc = true
end