Is there any convention about how/where to specify application's version number?
For example, for the ruby gems lib/mygem/version.rb
is the file generally used for that purpose.
My guess would be creating config/version.rb
file like that:
module MySite
VERSION = "0.0.4"
# or in MySite::Application class
#
# class Application
# VERSION = "0.0.4"
# end
end