[Fix] Add 10.7 target and remove unneeded libextobj subspecs

This commit is contained in:
Matt Yohe
2012-10-23 18:26:22 -04:00
parent d9a76c42d1
commit 3a3a4fab93
+9 -1
View File
@@ -12,7 +12,15 @@ Pod::Spec.new do |s|
s.framework = 'Foundation'
s.ios.deployment_target = '5.0' # there are usages of __weak
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.dependency 'libextobjc', '~> 0.2'
libextobjc_subspecs = %w[
EXTScope
EXTKeyPathCoding ]
libextobj_subspecs.each do |subspec|
s.dependency "libextobjc/#{subspec}", '~> 0.2'
end
end