From 44810a82e7ac0a3bcfd0b9d6803b6098cb53be8b Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Mon, 29 Jun 2015 16:16:50 -0700 Subject: [PATCH] [Podspec] Target iOS > 8.0 --- Stencil.podspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Stencil.podspec b/Stencil.podspec index 1f197bd..4418cc1 100644 --- a/Stencil.podspec +++ b/Stencil.podspec @@ -8,6 +8,8 @@ Pod::Spec.new do |spec| spec.social_media_url = 'http://twitter.com/kylefuller' spec.source = { :git => 'https://github.com/kylef/Stencil.git', :tag => "#{spec.version}" } spec.source_files = 'Stencil/*.{h,swift}' + spec.ios.deployment_target = '8.0' + spec.osx.deployment_target = '10.9' spec.requires_arc = true spec.dependency 'PathKit', '~> 0.3.0' end