-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathWendy.podspec
44 lines (37 loc) · 2.27 KB
/
Wendy.podspec
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
42
43
44
#
# Be sure to run `pod lib lint Wendy.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Wendy'
s.version = '0.5.1'
s.swift_version = '5.10'
s.summary = 'Build offline first iOS mobile apps. Remove loading screens, perform tasks instantly.'
# Ensure developers won't hit CocoaPods/CocoaPods#11402 with the resource
# bundle for the privacy manifest.
s.cocoapods_version = '>= 1.12.0'
# 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
Wendy is an iOS library designed to help you make your app offline-first. Use Wendy to define sync tasks, then Wendy will run those tasks periodically to keep your app's device offline data in sync with it's online remote storage.
Wendy is a FIFO task runner. You give it tasks, one by one, it persists those tasks to storage, then when Wendy has determined it's a good time for your task to run, it will call your task's sync function to perform a sync. If your user's device is online and has a good amount of battery, Wendy goes through all of the tasks available one by one running them to succeed or fail and try again.
DESC
s.homepage = 'https://github.com/levibostian/Wendy-iOS'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Levi Bostian' => '[email protected]' }
s.source = { :git => 'https://github.com/levibostian/Wendy-iOS.git', :tag => s.version.to_s }
s.resource_bundle = {
"#{s.module_name}_Privacy" => "Source/PrivacyInfo.xcprivacy"
}
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.10' }
s.ios.deployment_target = '13.0'
s.source_files = 'Source/**/*{.swift}'
s.dependency 'groue_Semaphore', '= 0.0.8-pod.1'
end