Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
205 views

Chain of Responsibility and alias_method problems in Ruby

I'm trying to implement the chain of responsibility pattern in Ruby and ActiveRecord for a polymorphic object. I'm having a few problems. Sometimes I get an error that a method is not defined when ...
2
votes
3answers
202 views

OO-Perl Aliasing Class Attributes

I have a module that I'm working on. I am setting up a few attributes like this: $self->{FOO}; $self->{BAR}; $self->{FOOBAR}; And, I want to use AUTOLOAD to help create methods for ...
2
votes
1answer
151 views

Is there an elegant way to test if one instance method is an alias for another?

In a unit test I need to test whether alias methods defined by alias_method have been properly defined. I could simply use the same tests on the aliases used for their originals, but I'm wondering ...
2
votes
3answers
220 views

Alias method chain in JavaScript?

In JavaScript, how could you create a new function with the same name as an existing function, while also preserving the original function so it could be called from within the new one?
2
votes
1answer
499 views

alias_method and class_methods don't mix?

Greetings, I've been trying to tinker with a global Cache module, but I can't figure out why this isn't working. Does anyone have any suggestions? This is the error produced for the below code: ...
2
votes
2answers
537 views

ruby on rails add functionality to model property change

In my rails model, I have a decimal property called employer_wcb. I would like it if, when employer_wcb was changed, a dirty bit was set to true. I'd like to override the employer_wcb setter method. ...
0
votes
1answer
99 views

class << self, alias_method, and monkey patching Mechanize::Cookie

I have an issue with Mechanize::Cookie misbehaving and I want to trying to monkey patch it. My code: class Mechanize::Cookie class << self; alias_method :old_parse, :parse end def ...
0
votes
1answer
315 views

alias_attribute and creating and method with the original attribute name causes a loop

Im trying to dynamically create a method chain in one attribute in my model. By now I have this function: def create_filtered_attribute(attribute_name) alias_attribute ...
0
votes
1answer
520 views

Override same Class method in Ruby with Multiple Modules, with need to call super. Do I use Method Alias, or some other clever trick?

Here's the situation: I have a User model, and two modules for authentication: Oauth and Openid. Both of them override ActiveRecord#save, and have a fair share of implementation logic. Given that I ...