forked from geekskool/JSONSwift
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTisander.podspec
More file actions
20 lines (16 loc) · 786 Bytes
/
Tisander.podspec
File metadata and controls
20 lines (16 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'Tisander'
s.version = '1.0.0'
s.summary = 'A pure Swift ordered JSON parser.'
s.description = <<-DESC
A JSON parsing library written in pure Swift. It's all stored in a structure of arrays so it's ordered, and convertable to a String.
DESC
s.homepage = 'https://mikezs.github.io/Tisander'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mike Bignell' => 'mike@mbignell.com' }
s.source = { :git => 'https://github.com/mikezs/Tisander.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mikebignell'
s.ios.deployment_target = '8.0'
s.swift_version = '4.1'
s.source_files = 'Source/*.swift'
end