-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnectionKit.podspec
More file actions
31 lines (24 loc) · 1.25 KB
/
ConnectionKit.podspec
File metadata and controls
31 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = 'ConnectionKit'
s.version = '0.7.0'
s.summary = 'Manages a connection implementing the Relay Cursor Connections Specification'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
This library provides utilities for managing a connection implementing the Relay Cursor Connections Specification.
It also provides reactive (RxSwift) bindings for observing that connection's states.
DESC
s.homepage = 'https://github.com/AttilaTheFun/ConnectionKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'logan.shire@gmail.com' => 'logan.shire@gmail.com' }
s.source = { :git => 'https://github.com/AttilaTheFun/ConnectionKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.swift_version = '5.0'
s.static_framework = true
s.source_files = 'Source/**/*'
s.dependency 'RxCocoa'
s.dependency 'RxSwift'
end