forked from typelift/Swiftz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftz.podspec
More file actions
18 lines (17 loc) · 866 Bytes
/
Swiftz.podspec
File metadata and controls
18 lines (17 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Swiftz"
s.version = "0.6.3"
s.summary = "Swiftz is a Swift library for functional programming."
s.homepage = "https://github.com/typelift/Swiftz"
s.license = { :type => "BSD" }
s.authors = { "CodaFi" => "devteam.codafi@gmail.com", "pthariensflame" => "alexanderaltman@me.com" }
s.requires_arc = true
s.osx.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.1"
s.watchos.deployment_target = "2.1"
s.source = { :git => "https://github.com/typelift/Swiftz.git", :tag => "#{s.version}", :submodules => true }
s.compiler_flags = '-D XCODE_BUILD'
s.xcconfig = { "OTHER_SWIFT_FLAGS" => '-DXCODE_BUILD' }
s.source_files = "Swiftz/Sources/*.swift", "Carthage/Checkouts/Swiftx/Sources/*.swift", "Carthage/Checkouts/Operadics/Operators.swift"
end