35 lines
1.2 KiB
Ruby
35 lines
1.2 KiB
Ruby
Pod::Spec.new do |s|
|
||
s.name = 'ParseKit'
|
||
s.version = '0.0.1'
|
||
s.license = 'Apache'
|
||
s.summary = 'Objective-C/Cocoa String Tokenizer and Parser toolkit. Supports Grammars.'
|
||
s.homepage = 'http://parsekit.com/'
|
||
s.author = { 'Todd Ditchendorf' => 'todd.ditchendorf@gmail.com' }
|
||
|
||
s.source = { :git => 'https://github.com/itod/parsekit.git', :commit => 'b1f7fc39c2b8bd3b87a02183d86f64aa4852b5b1'}
|
||
|
||
s.description = %{
|
||
ParseKit is a Mac OS X Framework written by Todd Ditchendorf in
|
||
Objective-C 2.0 and released under the Apache Open Source License
|
||
Version 2.0. ParseKit is suitable for use on Mac OS X Leopard,
|
||
Snow Leopard or iOS. ParseKit is an Objective-C implementation
|
||
of the tools described in Building Parsers with Java by Steven
|
||
John Metsker.
|
||
|
||
ParseKit includes additional features beyond the
|
||
designs from the book and also some changes to match common
|
||
Cocoa/Objective-C conventions. These changes are relatively superficial,
|
||
however, and Metsker’s book is the best documentation available
|
||
for ParseKit.
|
||
}
|
||
|
||
s.source_files = 'include/**/*.{h,m}', 'src/**/*.{h,m}'
|
||
|
||
s.ios.frameworks = 'Foundation', 'CoreGraphics'
|
||
s.osx.framework = 'Foundation'
|
||
|
||
s.library = 'icucore'
|
||
|
||
s.requires_arc = false
|
||
end
|