-
Notifications
You must be signed in to change notification settings - Fork 0
/
PerspectiveEye.podspec
37 lines (31 loc) · 1.97 KB
/
PerspectiveEye.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
Pod::Spec.new do |s|
s.name = 'PerspectiveEye'
s.version = '0.3.0'
s.summary = 'PerspectiveEye is a "Debug View Hierarchy" tool that is simulated on iOS. It can display the hierarchical relationship, content and constraint information of all UIViews under the current window in 3D perspective.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/Yasic/PerspectiveEye'
s.screenshots = 'https://raw.githubusercontent.com/Yasic/PerspectiveEye/master/Screenshot/normal_mode_01.jpg', 'https://raw.githubusercontent.com/Yasic/PerspectiveEye/master/Screenshot/normal_mode_02.jpg', 'https://raw.githubusercontent.com/Yasic/PerspectiveEye/master/Screenshot/only_wireframe.jpg', 'https://raw.githubusercontent.com/Yasic/PerspectiveEye/master/Screenshot/show_constraints.jpg'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Yasic' => '[email protected]' }
s.source = { :git => 'https://github.com/Yasic/PerspectiveEye.git', :tag => s.version.to_s }
s.frameworks = 'UIKit', 'Foundation', 'SceneKit'
s.libraries = 'c++'
s.ios.deployment_target = '8.0'
s.prefix_header_contents = '#ifdef __OBJC__', '#import <Masonry/Masonry.h>', '#import <SceneKit/SceneKit.h>', '#import "PEYDefines.h"', '#endif'
s.xcconfig = {
'VALID_ARCHS' => 'arm64 x86_64',
}
s.source_files = 'PerspectiveEye/Classes/**/*.{h,m,c}'
s.public_header_files = 'PerspectiveEye/Classes/**/*.h'
# s.resource_bundles = {
# 'PerspectiveEye' => ['PerspectiveEye/Assets/*.png']
# }
s.dependency 'Masonry'
end