Files
JBChartView/cdebug/0.1/cdebug.podspec
T
Jeong YunWon 0733ec9672 [Add] cdebug
cdebug is c/objc debug macro collection
2012-10-22 22:27:04 +09:00

23 lines
915 B
Ruby

Pod::Spec.new do |s|
s.name = "cdebug"
s.version = "0.1"
s.summary = "Debug macro collection for c/objc."
s.description = <<-DESC
Debug macro collections.
Append file, line, time to macro
* dprintf as printf/NSLog wrapper
* dassert as asssert wrapper
* dlog for conditional dprintf
* dassertlog for assertion after log
* Everythings are activated when debug mode only
DESC
s.homepage = "https://github.com/youknowone/cdebug"
s.license = { :type => '2-clause BSD', :file => 'LICENSE' }
s.author = { "Jeong YunWon" => "jeong@youknowone.org" }
s.source = { :git => "https://github.com/youknowone/cdebug.git", :tag => "pod-0.1" }
s.source_files = 'debug.h', 'supports/pod.m'
end