diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-22 12:23:20 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-22 12:23:20 +0100 |
commit | 69a3b99d5abca24eb18b6727eca977fcaedda9ca (patch) | |
tree | 721970acb72024c2f2a4c3158c3afb1c8da2ecec | |
parent | 1d936fa93f3f31163807f8e2e8a48b4f3ef926dc (diff) |
Show Alaveteli version number on debug page (using last git tag in history)
-rw-r--r-- | app/controllers/admin_general_controller.rb | 1 | ||||
-rw-r--r-- | app/views/admin_general/debug.rhtml | 2 |
2 files changed, 3 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 diff --git a/app/views/admin_general/debug.rhtml b/app/views/admin_general/debug.rhtml index 40fe33616..d7bf1c6da 100644 --- a/app/views/admin_general/debug.rhtml +++ b/app/views/admin_general/debug.rhtml @@ -7,6 +7,8 @@ <h2>Version numbers</h2> <p> +Alaveteli version: <%= link_to @current_version, @github_origin + @current_version %> +<br> Alaveteli branch: <%= link_to @current_branch, @github_origin + @current_branch %> <br> Alaveteli commit: <%= link_to @current_commit, @github_origin + @current_commit %> |