This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
JustPersist.podspec
42 lines (32 loc) · 1.87 KB
/
JustPersist.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
Pod::Spec.new do |s|
s.name = 'JustPersist'
s.version = '2.5.2'
s.summary = 'JustPersist is the easiest and safest way to do persistence on iOS with Core Data support out of the box. It also allows you to migrate to any other persistence framework with minimal effort.'
s.description = "<<-DESC
JustPersist aims to be the easiest and safest way to do persistence on iOS. It supports Core Data out of the box and can be extended to transparently support other frameworks.
You can use JustPersist to migrate from one persistence layer to another with minimal effort. Since we moved from MagicalRecord to Skopelos, we provide available wrappers for these two frameworks.
At it's core, JustPersist is a persistence layer with a clear and simple interface to do transactional readings and writings, taking inspirations from Skopelos where readings and writings are separated by design.
DESC"
s.homepage = 'https://github.com/justeat/JustPersist'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = 'Just Eat Takeaway iOS Team'
s.source = { :git => 'https://github.com/justeat/JustPersist.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/justeat_tech'
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.frameworks = 'Foundation', 'CoreData'
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'JustPersist/Classes/Core/**/*'
end
s.subspec 'Skopelos' do |ss|
ss.dependency 'JustPersist/Core'
ss.dependency 'Skopelos', '~> 2.4.1'
ss.source_files = 'JustPersist/Classes/Wrappers/Skopelos/*'
end
s.subspec 'MagicalRecord' do |ss|
ss.dependency 'JustPersist/Core'
ss.dependency 'MagicalRecord', '~> 2.3.2'
ss.source_files = 'JustPersist/Classes/Wrappers/MagicalRecord/*'
end
end