forked from mikeash/SwiftObserverSet
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTABObserverSet.podspec
More file actions
16 lines (15 loc) · 909 Bytes
/
TABObserverSet.podspec
File metadata and controls
16 lines (15 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'TABObserverSet'
s.version = '2.1.0'
s.summary = 'NotificationCenter re-conceptualization for Swift.'
s.description = <<-DESC
TABObserverSet provides a Swift-y alternative to the traditional NotificationCenter style of reactive programming.
With a simple syntax, TABObserverSet is easy to use and read in your code.
DESC
s.homepage = 'https://github.com/theappbusiness/TABObserverSet'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.authors = { 'Kane Cheshire' => 'kane.cheshire@kinandcarta.com' }
s.source = { :git => 'https://github.com/theappbusiness/TABObserverSet.git', :tag => s.version.to_s }
s.platforms = { :ios => "8.0", :osx => "10.10", :watchos => "2.0", :tvos => "9.0" }
s.source_files = 'TABObserverSet/Classes/**/*', 'ObserverSet.swift'
end