-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathXcodeEditor.podspec
More file actions
14 lines (14 loc) · 591 Bytes
/
XcodeEditor.podspec
File metadata and controls
14 lines (14 loc) · 591 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = 'XcodeEditor'
s.version = '1.6.4'
s.license = 'Apache2.0'
s.summary = 'An API for manipulating Xcode Projects using objective-C.'
s.homepage = 'https://github.com/jasperblues/XcodeEditor'
s.author = { 'Jasper Blues' => 'jasper@appsquick.ly' }
s.source = { :git => 'https://github.com/jasperblues/XcodeEditor.git', :tag => 'v1.6.4' }
s.platform = :osx
s.source_files = 'Source/*.{h,m}', 'Source/Utils/*.{h,m}', 'Source/Include/*.{h,m}'
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.8'
end