From: "Iñaki Baz Castillo" Date: 2011-05-01T09:24:07+09:00 Subject: Re: Why defining a constant in a method is not allowed but using self.class.const_set is allowed? 2011/5/1 Phillip Gawlowski : > Maybe a configuration Hash is an acceptable compromise between lookup > speed and mutability? Humm, yes, having a HASH constant containing a hash is faster than accessing instance variables within a class. Just a bit, but faster :) So I'll use it, something like: module MyApp CONFIGURATION = {} end Thanks. -- Iñaki Baz Castillo