-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyncVault.podspec
More file actions
42 lines (33 loc) · 1.49 KB
/
SyncVault.podspec
File metadata and controls
42 lines (33 loc) · 1.49 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
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = 'SyncVault'
s.version = '1.0.0'
s.summary = 'Zero-dependency offline-first Store-and-Forward sync engine for Apple platforms.'
s.description = <<-DESC
SyncVault-Swift is a pure, native Swift package that provides offline-first
"Store-and-Forward" functionality for iOS, macOS, and watchOS applications.
Features:
- Zero external dependencies (uses native URLSession and FileManager)
- Modern Swift Concurrency (async/await, Actors)
- Automatic queue processing with exponential backoff
- Network monitoring via NWPathMonitor
- Thread-safe operations using Swift Actors
- SwiftUI-friendly AsyncStream events
- Supports iOS, macOS, watchOS, and tvOS
DESC
s.homepage = 'https://github.com/brownboycodes/SyncVault-Swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = {
'Nabhodipta Garai' => 'brownboycodes',
'Ajay Verma' => 'ajayverma050698'
}
s.source = { :git => 'https://github.com/brownboycodes/SyncVault-Swift.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.swift_versions = ['5.0', '5.5', '5.9']
s.source_files = 'Sources/SyncVault/**/*.swift'
s.frameworks = 'Foundation', 'Network'
# No external dependencies required
# s.dependency 'SomeOtherPod', '~> 1.0'
end