-
Notifications
You must be signed in to change notification settings - Fork 117
/
Freddy.podspec
31 lines (22 loc) · 1.04 KB
/
Freddy.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
Pod::Spec.new do |s|
s.name = "Freddy"
s.version = "2.0.0b1"
s.summary = "A JSON parsing library written in Swift"
s.description = <<-DESC
Freddy is a reusable framework for parsing JSON in Swift.
Its primary goal is to faciliate the safe parsing of JSON,
while also preserving the ease of use presented by parsing
JSON in Objective-C.
DESC
s.homepage = "https://github.com/bignerdranch/Freddy"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = {"Matt Mathias" => "[email protected]",
"John Gallagher" => "[email protected]",
"Zachary Waldowski" => "[email protected]"}
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.source = {:git => "https://github.com/bignerdranch/Freddy.git", :tag => "v#{s.version}"}
s.source_files = "Freddy/*.swift"
s.requires_arc = true
end