-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOfflineRequestManager.podspec
More file actions
19 lines (18 loc) · 1.18 KB
/
OfflineRequestManager.podspec
File metadata and controls
19 lines (18 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'OfflineRequestManager'
s.version = '1.2.1'
s.summary = 'Swift framework for ensuring that network requests are sent even if the device is offline or the app is terminated'
s.description = <<-DESC
OfflineRequestManager allows apps to enqueue network requests in the background regardless of current connectivity.
Any requests must be represented by OfflineRequest. If they conform to the optional methods that allow them to be
re-instantiated from a dictionary, then they will also be saved to disk to ensure that they are sent whenever the app
comes back online.
DESC
s.ios.deployment_target = '13.0'
s.homepage = 'https://github.com/makingspace/OfflineRequestManager'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'pomalley' => 'pomalley@makespace.com' }
s.source = { :git => 'https://github.com/makingspace/OfflineRequestManager.git', :tag => s.version.to_s }
s.source_files = 'OfflineRequestManager/Classes/**/*'
s.dependency 'Alamofire'
end