Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed May 4, 2014
1 parent 4de65c8 commit 30cafe5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Aspects v1.0.1 [![Build Status](https://travis-ci.org/steipete/Aspects.svg?branch=master)](https://travis-ci.org/steipete/Aspects)
Aspects v1.1.0 [![Build Status](https://travis-ci.org/steipete/Aspects.svg?branch=master)](https://travis-ci.org/steipete/Aspects)
==============

Delightful, simple library for aspect oriented programming (AOP) by [@steipete](http://twitter.com/steipete).
Expand All @@ -12,13 +12,13 @@ Aspects extends `NSObject` with the following methods:
/// If you choose `AspectPositionInstead`, `arguments` contains an additional argument which is the original invocation.
/// @return A token which allows to later deregister the aspect.
- (id<Aspect>)aspect_hookSelector:(SEL)selector
atPosition:(AspectPosition)position
withBlock:(void (^)(id object, NSArray *arguments))block;
atPosition:(AspectPosition)position
withBlock:(void (^)(id object, NSArray *arguments))block;

/// Hooks a selector class-wide.
+ (id<Aspect>)aspect_hookSelector:(SEL)selector
atPosition:(AspectPosition)position
withBlock:(void (^)(id object, NSArray *arguments))block;
atPosition:(AspectPosition)position
withBlock:(void (^)(id object, NSArray *arguments))block;

/// Deregister an aspect.
/// @return YES if deregistration is successful, otherwise NO.
Expand Down

0 comments on commit 30cafe5

Please sign in to comment.