forked from shjborage/AutoNSCoding
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAutoNSCoding.podspec
22 lines (19 loc) · 935 Bytes
/
AutoNSCoding.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "AutoNSCoding"
s.version = "0.1.3"
s.summary = "Make NSCoding protocol automatic."
s.description = <<-DESC
Make NSCoding protocol automatic.
When you use TMCache or EGOCache, Archive.. you should make your object
follow NSCoding protocol. If your model is large enough, it's very complex
and easy to make a mistake. AutoNSCoding is coming to solve this issue.
DESC
s.homepage = "https://github.com/shjborage/AutoNSCoding"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Eric" => "[email protected]" }
s.social_media_url = "http://twitter.com/Eric_shj"
s.platform = :ios, '2.0'
s.source = { :git => "https://github.com/shjborage/AutoNSCoding.git", :tag => "v0.1.3" }
s.source_files = '*.{h,m}'
s.requires_arc = true
end