aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/admin_general_controller.rb
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-05-22 12:23:20 +0100
committerSeb Bacon <seb.bacon@gmail.com>2012-05-23 09:15:49 +0100
commit0e7afc75608cd190908e92c1fb31e288dfb718f9 (patch)
tree212d10a2833a5b658d42f50d3c00497424e6d88d /app/controllers/admin_general_controller.rb
parentffbb807c5383a2e40b9e82a3c6f0adfce6417cba (diff)
Show Alaveteli version number on debug page (using last git tag in history)
Diffstat (limited to 'app/controllers/admin_general_controller.rb')
-rw-r--r--app/controllers/admin_general_controller.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/admin_general_controller.rb b/app/controllers/admin_general_controller.rb
index e192d097c..43ca4f093 100644
--- a/app/controllers/admin_general_controller.rb
+++ b/app/controllers/admin_general_controller.rb
@@ -80,6 +80,7 @@ class AdminGeneralController < AdminController
def debug
@current_commit = `git log -1 --format="%H"`
@current_branch = `git branch | grep "\*" | awk '{print $2}'`
+ @current_version = `git describe --always --tags`
repo = `git remote show origin -n | grep Fetch | awk '{print $3}' | sed -re 's/.*:(.*).git/\\1/'`
@github_origin = "https://github.com/#{repo.strip}/tree/"
@request_env = request.env