Compare commits

...

1 commit

Author SHA1 Message Date
Metamaps on Linode 82d2f1a62e metamaps.cc customizations 2018-01-24 19:54:46 -08:00
3 changed files with 3 additions and 2 deletions

Binary file not shown.

View file

@ -17,5 +17,6 @@
<%= render :partial => 'layouts/templates' %>
<%= render :partial => 'shared/metacodeCssColors' %>
<%= render :partial => 'layouts/googleanalytics' if ENV["GA_TRACKING_CODE"].present? %>
<a href="https://plus.google.com/110591816803782637658" rel="publisher"></a>
</body>
</html>

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
METAMAPS_VERSION = '3.5'
METAMAPS_BUILD = `git log -1 --pretty=%H`.chomp[0..11].freeze
METAMAPS_LAST_UPDATED = `git log -1 --pretty='%ad'`.split(' ').values_at(1, 2, 4).join(' ').freeze
METAMAPS_BUILD = `git log HEAD~1 -1 --pretty=%H`.chomp[0..11].freeze
METAMAPS_LAST_UPDATED = `git log HEAD~1 -1 --pretty='%ad'`.split(' ').values_at(1, 2, 4).join(' ').freeze