From 3a3a4fab934bf67438537a97efea1c19a8f4a915 Mon Sep 17 00:00:00 2001 From: Matt Yohe Date: Tue, 23 Oct 2012 18:26:22 -0400 Subject: [PATCH] [Fix] Add 10.7 target and remove unneeded libextobj subspecs --- Mantle/0.2/Mantle.podspec | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Mantle/0.2/Mantle.podspec b/Mantle/0.2/Mantle.podspec index 1f77a8ee..4368617c 100644 --- a/Mantle/0.2/Mantle.podspec +++ b/Mantle/0.2/Mantle.podspec @@ -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