summaryrefslogtreecommitdiff
path: root/config/initializers/update_gs_version_number.rb
blob: 47708585a4ae1d39dd231f8b6918512878577b8e (plain)
1
2
3
4
5
6
7
8
9
# The Gemeinschaft version is stored in an environment variable.
# It equals the branch in git.
#
if !ENV['GS_VERSION'].nil? && GsParameter.table_exists? && GsParameter.get('GEMEINSCHAFT_VERSION') != ENV['GS_VERSION']
  version = GsParameter.find_or_create_by_name('GEMEINSCHAFT_VERSION')
  version.section = 'Generic'
  version.value = ENV['GS_VERSION']
  version.save
end