27 lines
1.0 KiB
Ruby
Executable File
27 lines
1.0 KiB
Ruby
Executable File
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' => 'tom@tbxml.co.uk' }
|
|
s.source = {
|
|
:git => 'https://github.com/71squared/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
|
|
|
|
end
|