Read more

Defining class methods with Modularity traits

Henning Koch
March 08, 2011Software engineer at makandra GmbH

There are two ways to define a class method from a Modularity Show archive.org snapshot trait. Note that the usual caveats regarding class method visibility apply.

Using define_method

Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

The recommended way is to define a method on your module's singleton class:

module SomeTrait
  as_trait do
    define_singleton_method :foo do
      # ...
    end
  end
end

Using def (has caveats!)

Alternatively, you can def the method on self:

module SomeTrait
  as_trait do
    def self.foo
      # ...
    end
  end
end

This is quite concise and results in faster methods than using define_method. However, you cannot use it with parametrized traits.

The following will fail:

module SomeTrait
  as_trait do |name|
    def self.foo
      puts name # will raise an error because the variable 'name' is not bound to the method body
    end
  end
end
Posted by Henning Koch to makandra dev (2011-03-08 19:48)