Skip to content
This repository has been archived by the owner on Nov 6, 2018. It is now read-only.

Commit

Permalink
Add podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Abizern committed Sep 8, 2013
1 parent 5fded73 commit ef132a8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions KVOWithBlocks.podspec
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = "KVOWithBlocks"
s.version = "1.0.0"
s.summary = "KVO with blocks instead of callbacks."

s.description = <<-DESC
A category on NSObject that allows you observe a
keypath passing in a block to execute when the keypath
changes instead of using a callback method.
This works on iOS and OS X.
Why? Blocks are funky. They let you define an action at the
same time as you are setting up a observation. In most cases
this leads to clearer code than using a callback.
DESC

s.homepage = "http://abizern.org/KVOWithBlocks/"
s.license = 'MIT'
s.author = { "Abizer Nasir" => "abizern@abizern.org" }
s.source = { :git => "https://github.com/Abizern/KVOWithBlocks.git", :tag => "1.0.0" }
s.source_files = '*.{h,m}'
s.requires_arc = true
end

0 comments on commit ef132a8

Please sign in to comment.