We use the wonderful semantic versioning paradigm when versioning our rails app. One question I had was where is it best to store this number? I\'ve seen it stored in /l
/l
Personally I prefer adding a constant to the application class.
# file: config/initializers/version.rb class SomeApp::Application Version = '1.0.0' end