DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Application Version Number And Cool Codename Based On Subversion Number
// description of your code here
#codename generated from the dictionary
REVISION_NUMBER = `svn info`.split("\n")[4][/\d+/].to_i
APP_CODENAME = IO.readlines("/usr/share/dict/words")[REVISION_NUMBER]





