From: Christian Leskowsky Date: 2005-11-29T00:31:40+09:00 Subject: Re: AOP in Ruby ... ------=_Part_33300_30616090.1133191893610 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline I thought aspects were baked into the language. You just have to re-open a definition like: class A def a_method # do something end end class B < A alias old_a_method a_method def a_method puts "I'm an aspect" old_a_method end end Maybe I'm climbing up the wrong tree. Dependency injection and AOP are different problems aren't they? -- - 'There was an owl lived in an oak. The more he heard, the less he spoke. The less he spoke, the more he heard.' Christian Leskowsky christian.leskowsky@gmail.com On 11/28/05, Robert Klemme wrote: > > Mark Collins-Cope wrote: > > Hi there, > > > > I was wondering if there is any support (in the form of frameworks or > > whatever) for AOP in Ruby? > > There seems to be some: > http://raa.ruby-lang.org/search.rhtml?search=3Daop > > robert > > > ------=_Part_33300_30616090.1133191893610--