-
Notifications
You must be signed in to change notification settings - Fork 36
/
handlebars-objc.podspec
18 lines (16 loc) · 1.19 KB
/
handlebars-objc.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "handlebars-objc"
s.version = "1.4.4"
s.summary = "handlebars-objc is an implementation of Handlebars.js for Objective-C"
s.homepage = "https://github.com/Bertrand/handlebars-objc"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Bertrand Guiheneuf" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/Bertrand/handlebars-objc.git", :tag => "v#{s.version}" }
s.source_files = 'src/handlebars-objc', 'src/handlebars-objc/**/*.{h,m,ym,lm}'
s.public_header_files = %w(HBHandlebars.h runtime/HBTemplate.h runtime/HBExecutionContext.h runtime/HBExecutionContextDelegate.h runtime/HBEscapingFunctions.h context/HBDataContext.h context/HBHandlebarsKVCValidation.h helpers/HBHelper.h helpers/HBHelperRegistry.h helpers/HBHelperCallingInfo.h helpers/HBHelperUtils.h helpers/HBEscapedString.h partials/HBPartial.h partials/HBPartialRegistry.h errorHandling/HBErrorHandling.h).map{|f| "src/handlebars-objc/#{f}"}
s.header_dir = "HBHandlebars"
s.requires_arc = false
s.pod_target_xcconfig = { 'OTHER_CFLAGS' => '-fno-objc-arc' }
end