forked from mattgallagher/CwlSignal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCwlSignal.podspec
More file actions
20 lines (16 loc) · 915 Bytes
/
CwlSignal.podspec
File metadata and controls
20 lines (16 loc) · 915 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 = "CwlSignal"
s.version = "2.0.0"
s.summary = "A Swift framework for reactive programming."
s.description = <<-DESC
An implementation of reactive programming. For details, see the article on Cocoa with An implementation of reactive programming. For details, see the article on [Cocoa with Love](https://cocoawithlove.com), [CwlSignal, a library for reactive programming](https://cocoawithlove.com/blog/cwlsignal.html)
DESC
s.homepage = "https://github.com/mattgallagher/CwlSignal"
s.license = { :type => "ISC", :file => "LICENSE.txt" }
s.author = "Matt Gallagher"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.dependency 'CwlUtils'
s.source = { :git => "https://github.com/mattgallagher/CwlSignal.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.{swift,h}"
end