LoginSignup
14
16

More than 5 years have passed since last update.

railsでオープンクラスをするときの作法

Posted at

参考

例: Stringクラスを拡張する場合

lib/ext/string.rb
class String
  def is_number?
    true if Float(self) rescue false
  end
end
config/initializers/extensions.rb
require 'ext/string'
14
16
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
14
16