-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathEuler.podspec
More file actions
20 lines (20 loc) · 823 Bytes
/
Euler.podspec
File metadata and controls
20 lines (20 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Euler"
s.version = "0.3.12"
s.summary = "The open source computational framework for the Swift language (early stage)"
s.description = <<-DESC
The open source computational framework for the Swift language (early stage)
DESC
s.homepage = "https://euler.arguiot.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Arthur Guiot" => "arguiot@gmail.com" }
s.social_media_url = ""
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/arguiot/Euler.git", :tag => "v#{s.version}" }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
s.swift_version = "4.0"
end