forked from greenisus/NSObject-NSCoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSObject-NSCoding.podspec
26 lines (24 loc) · 1010 Bytes
/
NSObject-NSCoding.podspec
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
#
# Be sure to run `pod spec lint NSObject-NSCoding.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://docs.cocoapods.org/specification.html
#
Pod::Spec.new do |s|
s.name = "NSObject-NSCoding"
s.version = "1.0.0"
s.summary = "Automatic NSCoding and persistence implementation"
s.license = 'MIT'
s.author = { "Mike Mayo" => "mike@overhrd.com" }
s.source = { :git => "https://github.com/mooshee/NSObject-NSCoding.git", :tag => "1.0.0" }
s.source_files = '**/*.{h,m}'
# A list of file patterns which select the header files that should be
# made available to the application. If the pattern is a directory then the
# path will automatically have '*.h' appended.
#
# If you do not explicitly set the list of public header files,
# all headers of source_files will be made public.
#
# s.public_header_files = 'Classes/**/*.h'
s.requires_arc = false
end