Java Like public constant ?

Hi ,

    Some times there is a need to to store some constant variables in a Ruby Class.

   we can do that in Java like :    Public Static Class A{        public static int LUCKY_NUMBER=100;    }

   then we can use it everywhere A.LUCKY_NUMBER

   was wondering how can I do the same thing in Ruby?

thanks Kevin