12 lines
519 B
Ruby
12 lines
519 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "DHCOnDealloc"
|
|
s.version = "0.1.0"
|
|
s.summary = "A simple category that allows you set a block to fire when an object is dealloced.."
|
|
s.homepage = "https://github.com/confidenceJuice/DHCOnDealloc"
|
|
s.license = 'MIT'
|
|
s.author = { "Daniel Haight" => "confidence.designed@gmail.com" }
|
|
s.source = { :git => "https://github.com/confidenceJuice/DHCOnDealloc.git", :tag => "0.1.0" }
|
|
s.source_files = 'DHCOnDealloc'
|
|
s.requires_arc = true
|
|
end
|