forked from gscalzo/SwiftCubicSpline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftCubicSpline.podspec
More file actions
24 lines (21 loc) · 872 Bytes
/
SwiftCubicSpline.podspec
File metadata and controls
24 lines (21 loc) · 872 Bytes
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 = "SwiftCubicSpline"
s.version = "0.1.0"
s.summary = "Cubic Spline in Swift."
s.description = <<-DESC
An simple cubic spline engine in Swift
DESC
s.homepage = "https://github.com/gscalzo/SwiftCubicSpline"
s.license = 'MIT'
s.author = { "giordano scalzo" => "giordano.scalzo@gmail.com" }
s.source = { :git => "https://github.com/gscalzo/SwiftCubicSpline.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/giordanoscalzo'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'SwiftCubicSpline' => ['Pod/Assets/*.png']
}
s.frameworks = 'Foundation', 'CoreGraphics'
s.dependency 'SAMCubicSpline', '~> 0.1.1'
end