Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

書籍 Ruby Cookbook | Mixing in Class Methods

パンくず

Ruby Cookbook
Mixing in Class Methods

概要

Mixing in Class Methods

内容

クラスメソッドのMixinをする場合、
サブモジュールを作成し,メインのモジュールのself.includedメソッド
レシーバを拡張する。

サンプルコード

# encoding: Windows-31J

module Hogeable
  module HogeClassMethods
    def hoge
      puts "hoge!"
    end
  end
  
  def self.included(receiver)
    receiver.extend(HogeClassMethods)
  end
end

class Hoge
  include Hogeable
end

Hoge.hoge

出力

hoge!