-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustJson.podspec
More file actions
17 lines (17 loc) · 817 Bytes
/
JustJson.podspec
File metadata and controls
17 lines (17 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'JustJson'
s.version = '0.1.4'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'JustJson is a simple project for handling JSON with keypaths. Copying the logic from https://oleb.net/blog/2017/01/dictionary-key-paths/'
s.description = <<-DESC
SwiftyJSON is great but I want a lazy way to access the data.
JustJson is a simple project for handling JSON with keypaths.
Ole Begemann gave a good example on how to make it.
DESC
s.requires_arc = true
s.homepage = 'https://github.com/fattomhk/JustJSON'
s.authors = { 'PROJECT_OWNER' => 'fattomhk@gmail.com' }
s.source = { :git => 'https://github.com/fattomhk/JustJSON.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/*.swift'
end