forked from jagill/JAGPropertyConverter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJAGPropertyConverter.podspec
More file actions
18 lines (16 loc) · 926 Bytes
/
JAGPropertyConverter.podspec
File metadata and controls
18 lines (16 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'JAGPropertyConverter'
s.version = '0.2.0'
s.license = 'MIT'
s.summary = 'JAGPropertyConverter allows easy serialization/deserialization of Model objects to/from NSDictionaries in JSON or PropertyList formats.'
s.homepage = 'http://github.com/jagill/JAGPropertyConverter'
s.author = { 'James Gill' => '[email protected]' }
s.source = { :git => 'https://github.com/jagill/JAGPropertyConverter.git', :tag => '0.2.0' }
s.description = 'With minimal configuration, JAGPropertyConverter allows easy persistence, copying, or API serialization of your Model objects. It also allows run-time querying of an object\'s properties and their attributes.'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.header_dir = 'JAGPropertyConverter'
s.source_files = 'JAGPropertyConverter'
end