-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionalJSON.podspec
More file actions
22 lines (22 loc) · 927 Bytes
/
FunctionalJSON.podspec
File metadata and controls
22 lines (22 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "FunctionalJSON"
s.version = "0.1.0"
s.summary = "FunctionalJSON is a fast and functional JSON library for Swift."
s.description = <<-DESC
Inspired by the play/scala JSON lib.
Simple reads composition to build complex structures
Full JSON validation & easy debugging
Easy navigation into the JSON tree
Simple syntax
Fast !
DESC
s.homepage = "https://github.com/kreactive/FunctionalJSON"
s.license = 'MIT'
s.author = { "Antoine Palazzolo" => "a.palazzolo@kreactive.com" }
s.source = { :git => "https://github.com/kreactive/FunctionalJSON.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/antoine_p'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'FunctionalJSON/*.swift'
s.dependency 'FunctionalBuilder', '~> 0.1.0'
end