views:

31

answers:

1

Hey,

where would I place additions to stdlib classes in a rails project? Let's say something like:

class Date
  def foo
    'foo'
  end
end

I thought about the initializer folder but it somehow felt wrong. Ideas?

+2  A: 

Quite on the contrary, config/initializers is the right place to put this code. I usually create a folder there and put these extensions into separate files named by the name of the corresponding class (date.rb in your case).

neutrino
Great, that's how I was doing it right away. Thanks!
Frank