-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCause-Logic-Effect.podspec
More file actions
22 lines (19 loc) · 964 Bytes
/
Cause-Logic-Effect.podspec
File metadata and controls
22 lines (19 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "Cause-Logic-Effect"
spec.version = "7.2.1"
spec.summary = "Tools for developing using the Cause-Logic-Effect architecture."
spec.description = <<-DESC
The Cause-Logic-Effect architecture allows you to write code using a more functional style. The repo also have templates for creating view controllers using the CLE approach.
DESC
spec.homepage = "https://github.com/danielt1263/CLE-Architecture-Tools"
spec.license = "MIT"
spec.requires_arc = true
spec.author = { "Daniel Tartaglia" => "danielt1263@gmail.com" }
spec.platform = :ios
spec.platform = :ios, "15.6"
spec.source = { :git => "https://github.com/danielt1263/CLE-Architecture-Tools.git", :tag => "#{spec.version}" }
spec.source_files = "Utilities/**/*.swift"
spec.dependency "RxSwift", "~> 6.0"
spec.dependency "RxCocoa", "~> 6.0"
spec.swift_version = '5.5'
end