Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHRLAlgorithms.podspec
More file actions
Latest commit
47 lines (38 loc) · 2.47 KB
/
Copy pathHRLAlgorithms.podspec
File metadata and controls
47 lines (38 loc) · 2.47 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
36
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.newdo |s|
s.name='HRLAlgorithms'
s.version='1.0.2'
s.summary='(DEPRECATED) Wrapper around LearnKit.'
s.description=<<-DESC
(DEPRECATED) Wrapper around [LearnKit](https://github.com/mattrajca/LearnKit) to easy its integration in Swift CocoaPods.
DESC
s.homepage='https://github.com/HeartRateLearning/HRLAlgorithms'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'Enrique de la Torre'=>'indisoluble_dev@me.com'}
s.source={:git=>'https://github.com/HeartRateLearning/HRLAlgorithms.git',
:tag=>s.version.to_s,
:submodules=>true}
s.platform=:ios
s.ios.deployment_target='8.0'
s.prefix_header_file='HRLAlgorithms/Submodules/LearnKit/LearnKit/Prefix.pch'
s.source_files='HRLAlgorithms/Classes/**/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/fmincg/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Accelerate Extensions/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Config.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Core/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/K-NN/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Optimization/*.{h,m}',
'HRLAlgorithms/Submodules/LearnKit/liblbfgs/include/*.h',
'HRLAlgorithms/Submodules/LearnKit/liblbfgs/lib/*.{h,m}'
s.exclude_files='HRLAlgorithms/Submodules/LearnKit/LearnKit/Core/LNKMatrixImages.{h,m}'
s.private_header_files='HRLAlgorithms/Classes/Common/Private/*.h',
'HRLAlgorithms/Classes/K-NN/Private/*.h',
'HRLAlgorithms/Submodules/LearnKit/fmincg/*.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Accelerate Extensions/*.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Config.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Core/*.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/K-NN/*.h',
'HRLAlgorithms/Submodules/LearnKit/LearnKit/Optimization/*.h',
'HRLAlgorithms/Submodules/LearnKit/liblbfgs/include/*.h',
'HRLAlgorithms/Submodules/LearnKit/liblbfgs/lib/*.h'
s.requires_arc='HRLAlgorithms/Classes/**/*.m'
end