forked from bignerdranch/Freddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Freddy.podspec
32 lines (24 loc) · 1.14 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
32
Pod::Spec.new do |s|
s.name = "Freddy"
s.version = "3.0.0"
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" => "mattm@bignerdranch.com",
"John Gallagher" => "jgallagher@bignerdranch.com",
"Zachary Waldowski" => "zachary@bignerdranch.com" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = {:git => "https://github.com/bignerdranch/Freddy.git", :tag => "#{s.version}"}
s.source_files = "Sources/**/*.{h,swift}"
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end