On Jul 10, 2007, at 08:24, Frew Schmidt wrote: > Ok, I want to ensure that I am doing this the correct way, so is this > right? > > lib/delish/version.rb > ===================== > module Delish > > module Version > MAJOR = 0 > MINOR = 7 > TINY = 9 > > STRING = [MAJOR, MINOR, TINY].join(".") > end > > end UGH! KISS, or employ YAGNI. module Delish VERSION = '0.7.9' end You don't need major/minor/tiny. -- Poor workers blame their tools. Good workers build better tools. The best workers get their tools to do the work for them. -- Syndicate Wars