I am new to Ruby (coming from java background) and I was wondering whats the behavior for constants in RoR applications and in general Ruby.
Are they just initialized once, like java static variables?
I am initializing a fairly big array of hash as a constant, so I want to be sure if I am doing it right?
Thanks for your help.
module MyModule
MY_CONST = [{...}, {...}, {...}, {...}, {...}, ...]