-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMSStringifyMacros.podspec
More file actions
28 lines (22 loc) · 1.16 KB
/
MSStringifyMacros.podspec
File metadata and controls
28 lines (22 loc) · 1.16 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
Pod::Spec.new do |s|
s.name = 'MSStringifyMacros'
s.version = '0.1.6'
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = 'A set of macros for simplifying the use of NSUserDefaults and NSCoding.'
s.description = <<-DESC
MSStringifyMacros provides a convenient alternative to the normally tedious
and potentially error-prone standard approach to coding for NSUserDefaults and NSCoding.
DESC
s.homepage = 'https://github.com/murraysagal/MSStringifyMacros'
s.authors = { 'Murray Sagal' => 'murraysagal@mac.com' }
s.source = { :git => 'https://github.com/murraysagal/MSStringifyMacros.git', :tag => s.version.to_s }
s.source_files = 'MSStringifyMacro.h'
s.ios.deployment_target = '2.0'
s.osx.deployment_target = '10.2'
s.subspec 'Archiving' do |ss|
ss.source_files = 'MSStringifyMacros_Archiving.h', 'NSKeyedArchiver+MSStringifyMacrosAdditions.{h,m}', 'NSKeyedUnarchiver+MSStringifyMacrosAdditions.{h,m}'
end
s.subspec 'UserDefaults' do |ss|
ss.source_files = 'MSStringifyMacros_UserDefaults.h'
end
end