forked from twobitlabs/TBXML
-
Notifications
You must be signed in to change notification settings - Fork 1
/
TBXML.podspec
27 lines (27 loc) · 1.12 KB
/
TBXML.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'TBXML'
s.version = '1.5'
s.license = 'MIT'
s.summary = 'Super-fast, lightweight, easy to use XML parser for the Mac & iOS.'
s.homepage = 'http://www.tbxml.co.uk'
s.author = { 'Tom Bradley' => '[email protected]' }
s.source = {
:git => 'https://github.com/tache/TBXML.git',
:tag => 'v1.5'
}
s.description = %{
TBXML is a light-weight XML document parser written in Objective-C
designed for use on Apple iPad, iPhone & iPod Touch devices. TBXML
aims to provide the fastest possible XML parsing whilst utilising
the fewest resources. This requirement for absolute efficiency is
achieved at the expense of XML validation and modification. It is
not possible to modify and generate valid XML from a TBXML object
and no validation is performed whatsoever whilst importing and
parsing an XML document.
}
s.source_files = 'TBXML-Code/*.{h,m}' , 'TBXML-Headers/*.{h,m}'
s.library = 'z'
s.requires_arc = true
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) ARC_ENABLED' }
s.license = { :type => 'MIT', :file => 'README.markdown' }
end