3

我有 Ruby 类,我想在其中包含类和实例方法。按照此处描述的模式,我目前正在使用以下内容:

class SomeObject

  include SomeObject::Ability

  def self.some_builder_method(params)
    # use some_class_method ...
  end

end

module SomeObject::Ability

  module ClassMethods

    def some_class_method(param)
      # ...
    end

  end

  def self.included(klass)
    klass.extend(ClassMethods)
  end

  def some_instance_method
    # ...
  end

end

我宁愿不制作两个单独的模块(一个被包含,另一个被扩展),因为我模块中的所有方法在逻辑上都适合在一起。另一方面,这种模式 a) 要求我定义一个附加ClassMethods模块,b) 要求我为每个模块编写一个样板self.included方法。

有一个更好的方法吗?

编辑1:我找到了另一种方法,但我不确定这是否比第一种更好。

module Concern

  def included(base)

    # Define instance methods.
    instance_methods.each do |m|
      defn = instance_method(m)
      base.class_eval { define_method(m, defn) }
    end

    # Define class methods.
    (self.methods - Module.methods).each do |m|
      unless m == __method__
        base.define_singleton_method(m, &method(m))
      end
    end

  end

end

module SomeModule

  extend Concern

  def self.class_m
    puts "Class"
  end

  def instance_m
    puts "Instance"
  end

end

class Allo

  include SomeModule

end


Allo.class_m          # => "Class"
Allo.new.instance_m   # => "Instance"
4

1 回答 1

4

如果我理解正确,您真的只想使用ActiveSupport::Concern

module PetWorthy
  extend ActiveSupport::Concern

  included do
    validates :was_pet, inclusion: [true, 'yes']
  end

  def pet #instance method
  end

  module ClassMethods
    def find_petworthy_animal
      # ...
    end
  end
end

class Kitty
  include PetWorthy
end

Kitty.find_petworthy_animal.pet

included如果您没有任何行为可以触发包含,您(希望很明显)不需要使用该方法,但我将其放入只是为了演示。

于 2013-03-08T23:53:36.537 回答