Files
JBChartView/CoreParse/1.0.0/CoreParse.podspec
T
Chris Miller fbec7884de Added license specification to CoreParse.
It's either BSD or MIT; I don't quite remember which, but the clauses
are compatible. So there.
2012-08-28 08:21:12 -06:00

14 lines
446 B
Ruby

Pod::Spec.new do |s|
s.name = 'CoreParse'
s.version = '1.0.0'
s.summary = 'A shift/reduce parsing framework for Mac OS X and iOS.'
s.author = { 'Beelsebob' => '' }
s.license = 'BSD/MIT-like'
s.homepage = 'https://github.com/beelsebob/CoreParse'
s.source = { :git => 'https://github.com/beelsebob/CoreParse.git', :tag => '1.0.0' }
s.source_files = 'CoreParse/**/*.{h,m}'
s.requires_arc = false
s.frameworks = 'Foundation'
end