将方法混合到当前类中特征类
我正在通过重构现有的 Ruby 类(例如 A,它扩展了 ActiveRecord)来实现半重复的 Rails 管道,以拥有一个具有通用功能的模块(例如 M),然后将其混合到两个类似的 AR 类(现在是浅包装器)中。
当提取 A 的精华并将其切碎到 M 中时,A 的实例方法只是成为 M 中的方法,并且 A 的类方法进入 M 的 ClassMethods 子模块,并在类级别通过 self.included 钩子混合回 A 中。 M 和扩展,通过众所周知的习语。
然而,A 并不是一个普通的类——我们使用了 DelayedJob 中的一些类方法,而 DelayedJob 本身并不理解类方法;因此,我们将 A 的一些原始类方法移至 A 的特征类中,将它们定义为
class A
...
def old_plain_vanilla_class_method
...
end
class << self
def new_eigenclassed_class_method
...
end
...
end
...
end
现在的问题是,我们如何在 M 中表示它,以便它立即混合回 A 的特征类中?
I'm implementing a semi-duplicate Rails pipeline by refactoring an existing Ruby class, say A, which extends ActiveRecord, to have a module, say M, with common functionality, then to be mixed into two similar AR classes, now shallow wrappers.
When taking the meat of A and mincing it into M, A's instance methods simply become methods in M, and A's class methods go into a ClassMethods submodule of M, to be mixed back into A at class-level with a self.included hook of M and extend, via the well-known idiom.
However, A is not just any class -- we use some of its class methods from DelayedJob, which does not naturally understand class methods; hence we moved some of the original class methods of A into A's eigenclass, defining them as
class A
...
def old_plain_vanilla_class_method
...
end
class << self
def new_eigenclassed_class_method
...
end
...
end
...
end
The question now is, how do we represent that in M, so it mixes right back into A's eigenclass?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否理解你(请提供更多代码),但是你不能做这样的事情吗:
Not sure that I understand you well (more code please), but can't you do something like this: