denny/ShinyCMS-ruby

View on GitHub
plugins/ShinyCMS/lib/shinycms/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# ShinyCMS ~ https://shinycms.org
#
# Copyright 2009-2024 Denny de la Haye ~ https://denny.me
#
# ShinyCMS is free software; you can redistribute it and/or modify it under the terms of the GPL (version 2 or later)

# ShinyCMS version number ('Ubuntu style', YY.MM)
module ShinyCMS
  VERSION = '21.06'
  public_constant :VERSION

  # TODO: This doesn't work! .git generally isn't present on a deployed system.
  # Use the start of the git commit SHA as a release identifier
  # RELEASE = `git show --abbrev=4 --pretty=%h -q`.chomp
  # public_constant :RELEASE
end