-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlanOutSwift.podspec
More file actions
17 lines (17 loc) · 884 Bytes
/
PlanOutSwift.podspec
File metadata and controls
17 lines (17 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "PlanOutSwift"
spec.version = "1.1.0"
spec.summary = "PlanOut interpreter implementation in Swift."
spec.description = <<-DESC
A Swift implementation of PlanOut interpreter, for Swift or Objective-C backed front-ends. The implementation (tries to) follow standards defined by the Python implementation of PlanOut interpreter and also its Java implementation (planout4j).
DESC
spec.homepage = "https://github.com/irvifa/PlanOutSwift"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = {
"Irvi Aini" => "irvi.fa@gmail.com"
}
spec.platform = :ios, "9.3"
spec.swift_version = "5.0"
spec.source = { :git => "https://github.com/irvifa/PlanOutSwift.git", :tag => 'v' + spec.version.to_s }
spec.source_files = "Source/**/*.swift"
end