AspectR - Simple aspect-oriented programming in Ruby

Version:          0.3.5
Release date:     2002-01-29
Home page:        http://aspectr.sf.net/
Tarball:          http://prdownloads.sf.net/aspectr/aspectr-0-3-5.tar.gz
Authors:          Avi Bryant and Robert Feldt
Email:            avi@beta4.com, feldt@ce.chalmers.se

What is it?

Aspect-oriented programming concepts to Ruby. Essentially it allows you to wrap code around existing methods in your classes. This can be a good thing (and even affect how you design your code) since it separates different concerns into different parts of the code. It is somewhat similar to AspectJ, www.aspectj.org/.

Main features of AspectR (in AspectJ lingo): * Join points:

Installation?

  1. unpack tarball (if you haven't already)
  2. install: ruby install.rb
  3. If you've got RubyUnit you can also run tests: ruby tests/runtests.rb

Example of use?

See tests, try out examples/logger.rb or check out the aspects in the aspects subdir.

Documentation?

AspectR lets a module wrap any number of methods in other classes (or objects) with the "advice" methods (in the lingo of Aspect/J) of the module.

Usage:
require 'aspectr'
include AspectR
class MyAspect < Aspect

        def someAdviceMethod(method, object, exitstatus, *args)
             ...
      end
        ... some other advice methods ...

end
ma = MyAspect.new
ma.wrap(someClassorObject, :preAdvice, :postAdvice, ... methods to wrap...) or
ma.wrap(someClassorObject, :preAdvice, :postAdvice, /patternToWrap/) or
AspectR.wrap_classes(ma, :preAdvice, :postAdvice,

[Class1, Class2], ...methods to wrap...)

Advice methods are passed a variable number of parameters: the first is the name of the method currently being wrapped the second is the object receiving the method call the third is the exit/return status:

        Array with return value(s) if the method exited normally
        true if the method exited with an exception
        nil if the method hasn't yet exited (for preAdvice)

the rest are the arguments that were passed to the wrapped method.

I'm confused by the different version of this? What is/was 'advice.rb'?

AspectR was originally called advice.rb and written by Avi Bryant. Later Robert Feldt changed/tweaked/extended it. Avi then refactored very nicely, Robert tweaked a bit more and on it goes... ;-) For details see CHANGELOG.

License and legal issues?

All files in this package are
Copyright (c) 2001 Avi Bryant (avi@beta4.com) and Robert Feldt (feldt@ce.chalmers.se)

and they are distributed under GPL. See COPYING.TXT.

Plans for the future?

See TODO. This is an alpha release so there might be (some) changes to the interface.

How does AspectR differ from AspectJ?

AspectJ features that AspectR is missing:

Do you have comments or questions?

We'd appreciate if you drop us a note if you're using AspectR. If there are some known users we'll be more motivated to pack up additions / new versions and post them to RAA.

Happy coding!

Avi and Robert