Files
JBChartView/ParseKit/0.0.1/ParseKit.podspec
T
2012-08-06 23:10:47 +02:00

35 lines
1.2 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 Metskers 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