-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCovertSwiftObserver.podspec
More file actions
22 lines (18 loc) · 1.21 KB
/
CovertSwiftObserver.podspec
File metadata and controls
22 lines (18 loc) · 1.21 KB
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 |s|
s.name = 'CovertSwiftObserver'
s.version = '1.0.0'
s.summary = 'Effortless Reactive Programming in Swift'
s.description = <<-DESC
Swift implementation of the [Observer Pattern](https://en.wikipedia.org/wiki/Observer_pattern) taking full advantage of the latest language features to ensure type and thread safty. The library simplifies the syntax of notifications by hiding redundant service objects and automatically manages unsubscription of observers helping to avoid retain cycles which makes [Reactive Programming](https://en.wikipedia.org/wiki/Reactive_programming) in Swift easier than ever.
DESC
s.homepage = 'https://github.com/DnV1eX/CovertSwiftObserver'
s.license = 'Apache License, Version 2.0'
s.author = { 'Alexey Demin' => 'dnv1ex@yahoo.com' }
s.source = { :git => 'https://github.com/DnV1eX/CovertSwiftObserver.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Sources/CovertSwiftObserver/CovertSwiftObserver.swift'
end