This repository was archived by the owner on Jun 11, 2018. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathValueCoding.podspec
More file actions
Latest commit
29 lines (26 loc) · 1.24 KB
/
Copy pathValueCoding.podspec
File metadata and controls
29 lines (26 loc) · 1.24 KB
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
Pod::Spec.newdo |s|
s.name="ValueCoding"
s.version="3.0.0"
s.summary="Swift protocols for encoding/decoding value types."
s.description=<<-DESC
ValueCoding is a simple pair of protocols to support the archiving
and unarchiving of Swift value types.
It works by allowing a value type, which must conform to ValueCoding
to define via a typealias its archiver. The archiver is another type
which implements the ArchiverType protocol. This type will typically
be an NSObject which implements NSCoding and is an adaptor which is
responsible for encoding and decoding the properties of the value.
DESC
s.homepage="https://github.com/danthorpe/ValueCoding"
s.license='MIT'
s.author={"Daniel Thorpe"=>"@danthorpe"}
s.source={:git=>"https://github.com/danthorpe/ValueCoding.git",:tag=>s.version.to_s}
s.module_name='ValueCoding'
s.social_media_url='https://twitter.com/danthorpe'
s.requires_arc=true
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
s.source_files='Sources/*.swift'
end