LoginSignup
1
0

More than 5 years have passed since last update.

[メタプログラミングRuby]monetize のオープンクラス

Last updated at Posted at 2018-07-10

メタプログラミングRubyを読んでて、オープンクラスの例として monetize が上がっていたので、実際にオープンクラスしているところを見てみた。

このディレクトリ にあるファイルでオープンクラスしてて、それぞれのクラスごとに to_money を定義してる。

NilClass ではこんな感じ :arrow_down: で定義してある。

class NilClass
  def to_money(currency = nil)
    Money.new(nil, currency || Money.default_currency)
  end
end
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0