Skip to content

Commit

Permalink
Update PHFDelegateChain
Browse files Browse the repository at this point in the history
  • Loading branch information
fphilipe committed May 29, 2012
1 parent 1383484 commit 3b03f1d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions PHFDelegateChain/1.0.1/PHFDelegateChain.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = 'PHFDelegateChain'
s.version = '1.0.1'
s.license = 'MIT'
s.summary = 'Easily create delegation chains.'
s.description = <<-DESC
This NSProxy subclass allows you to chain delegate methods easily. Create an
instance of PHFDelegateChain, tell it which objects it should forward to and set
it as the delegate of an object. Whenever a method is called on the chain, it
will forward it to the registered objects.
DESC
s.homepage = 'https://github.com/fphilipe/PHFDelegateChain'
s.author = { 'Philipe Fatio' => 'philipe.fatio@gmail.com' }
s.source = { :git => 'git://github.com/fphilipe/PHFDelegateChain.git',
:tag => 'v1.0.1' }
s.source_files = 'PHFDelegateChain.{h,m}'
s.requires_arc = true
end

0 comments on commit 3b03f1d

Please sign in to comment.