-
Notifications
You must be signed in to change notification settings - Fork 5
/
MPEDN.podspec
36 lines (24 loc) · 1000 Bytes
/
MPEDN.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
# coding: utf-8
Pod::Spec.new do |s|
s.name = "MPEDN"
s.version = "1.0.0"
s.summary = "An EDN (Extensible Data Notation) Objective C library for OS X and iOS."
s.description = <<-DESC
The library includes:
* `MPEdnParser`, a parser for reading EDN and generating equivalent Cocoa data
structures.
* `MPEdnWriter`, which writes Cocoa data structures as EDN.
For most uses, parsing EDN is as simple as:
[@"{:a 1}" ednStringToObject];
Which returns the parsed object or nil on error.
And to generate EDN from a Cocoa object:
[myObject objectToEdnString];
See the headers for API docs.
DESC
s.homepage = "https://github.com/scramjet/mpedn"
s.license = { :type => "Eclipse", :file => "LICENSE" }
s.author = { "Matthew Phillips" => "m@mattp.name" }
s.source = { :git => "https://github.com/scramjet/mpedn.git", :tag => "1.0.0" }
s.source_files = "MPEdn"
s.requires_arc = true
end