-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathFAParser.podspec
More file actions
21 lines (15 loc) · 782 Bytes
/
FAParser.podspec
File metadata and controls
21 lines (15 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'FAParser'
s.version = '0.1.5'
s.summary = 'JSON Parsing technique using Key Value Coding.'
s.description = <<-DESC
1. You can parse JSON using this technique with minimum lines of code.
2. You can archive and unarchive a custom object in User Defaults with minimum lines of code.
DESC
s.homepage = 'https://github.com/fahidattique55/FAParser'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Fahid Attique' => 'fahidattique55@gmail.com' }
s.source = { :git => 'https://github.com/fahidattique55/FAParser.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'FAParser/Classes/**/*'
end