Files
JBChartView/CHDataStructures/0.0.1/CHDataStructures.podspec
T
James Martinez 937f0ebd12 Changed CHDataStructures Summary
Changed the summary on CHDataStructures to the summary from the homepage (http://cocoaheads.byu.edu/code/CHDataStructures)
2012-09-04 08:23:09 -07:00

12 lines
1.6 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'CHDataStructures'
s.license = {:type => 'ISC Variant', :text => 'Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
The software is provided "as is", without warranty of any kind, including all implied warranties of merchantability and fitness. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.'}
s.version = '0.0.1'
s.homepage = 'http://cocoaheads.byu.edu/code/chdatastructures'
s.summary = 'Have you ever lamented the absence of queues, stacks, and trees from the Cocoa API? How many times have you considered writing your own, or scoured the web to see if someone else had? Well, look no further, the work has been done for you!CHDataStructures is a library of standard data structures which can be used in any Objective-C program, for educational purposes, or as a foundation for other data structures to build on. Data structures in this library adopt Objective-C protocols that define the functionality of and API for interacting with any implementation thereof, regardless of its internals.'
s.author = { 'Dave Delong' => '@davedelong'}
s.source = { :git => 'https://github.com/davedelong/CHDataStructures.git', :commit => 'e2321caf29b897ed4df4dd4b86e4189ce6e55375'}
s.source_files = 'source'
end