-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVRegression.podspec
More file actions
59 lines (41 loc) · 3.13 KB
/
AVRegression.podspec
File metadata and controls
59 lines (41 loc) · 3.13 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
48
49
50
51
52
53
54
55
56
57
58
59
#
# Be sure to run `pod spec lint AVRegression.podspec' to ensure this is a
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "AVRegression"
s.version = "0.1.1"
s.summary = "Polynomial and linear regression using Accelerate framework (vecLib)."
s.description = <<-DESC
Polynomial and linear regression using Accelerate framework (vecLib).
Inspired by Coursera Machine Learning course.
DESC
s.homepage = "http://github.com/avlaskin/AVRegression"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
s.author = { "Alexey Vlaskin" => "alex@avlaskin.com" }
s.social_media_url = "http://twitter.com/avlaskin"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/avlaskin/AVRegression.git", :tag => "0.1.1" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
s.source_files = "AVRegression", "AVRegression/**/*.{h,m}"
s.public_header_files = "AVRegression/**/*.h"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "Accelerate"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end