forked from mruegenberg/CDJSONExporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDJSONExporter.podspec
34 lines (21 loc) · 1016 Bytes
/
CDJSONExporter.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
Pod::Spec.new do |s|
s.name = "CDJSONExporter"
s.version = "1.0.1"
s.summary = "Conversion of a Core Data Store to/from JSON."
s.description = <<-DESC
CDJSONExporter allows you to export/import your Core Data object graph / managed object context
to/from a human-readable JSON format.
The main use case is backup functionality for apps as well as sharing small pieces of data between users.
DESC
s.homepage = "https://github.com/mruegenberg/CDJSONExporter"
s.license = 'MIT'
s.author = { "Marcel Ruegenberg" => "[email protected]" }
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.source = { :git => "[email protected]:Slawek-XSolve/CDJSONExporter.git" }
s.source_files = '*.{h,m}'
s.public_header_files = 'CDJSONExporter.h'
s.frameworks = 'CoreFoundation', 'CoreData'
s.requires_arc = true
s.dependency 'NSData+Base64'
end