Files
JBChartView/NSContainers-PrettyPrint/0.1.0/NSContainers-PrettyPrint.podspec
T
Chris Miller a417970f54 A new.version with fancy new features!
* JRSwizzle is optional.
* You can use defines to activate just a subset of the alternate
  printers.
* You can still swizzle out if you like. (Swizzling has been changed
  to a c-style function call instead of munging up NSObject).
* Support for NSOrderedSet has been added.
2012-05-23 14:20:37 -06:00

16 lines
1.3 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'NSContainers-PrettyPrint'
s.version = '0.1.0'
s.license = 'FDOSL'
s.summary = 'Print your own object descriptions just like Apple\'s own NSArray and NSDictionary.'
s.homepage = 'https://github.com/NSError/NSContainers-PrettyPrint'
s.author = { 'Chris Miller' => 'lordsauronthegreat@gmail.com' }
s.source = { :git => 'https://github.com/NSError/NSContainers-PrettyPrint.git', :tag => '0.1.0' }
s.description = 'What part of "{\n foo : bar,\n someArray: (\n foo,\n bar\n )\n}" don\'t you understand? Apple has documented that NSArray, NSDictionary, NSSet, and friends should honor the descriptionWithLocale:indent: method should it be present in an object, printing that object without newline-escaping it or anything. Well, ever since Snow Leopard, it doesn\'t for "security reasons." This is a quick swizzle which adds it back. Because your objects are beautiful (so are you) and they deserve the limelight, too! Note that I do not condone this for production use; while debugging, however, this little number can be a total shot of awesome to your day!'
s.source_files = 'PrettyPrint/*.{h,m}'
s.clean_paths = 'examples/', 'vendor/', 'PrettyPrintTests/', 'SwizzleDemo/'
s.framework = 'Foundation'
s.requires_arc = true
# JRSwizzle was a dependency, but now it's totally optional.
end