]> git.openstreetmap.org Git - rails.git/blobdiff - script/statistics
Merge remote-tracking branch 'upstream/pull/3539'
[rails.git] / script / statistics
index cab1a5191261200da10c34778f9bd943da3165a1..05ed637a866eb8a4152bf0657295f92089894d11 100755 (executable)
@@ -2,7 +2,7 @@
 
 require File.join(File.dirname(__FILE__), "..", "config", "environment")
 
-start_time = Time.now
+start_time = Time.now.utc
 
 puts "<html>"
 puts "<head>"
@@ -30,7 +30,7 @@ begin
     puts "<tr><td>Number of relations</td><td>#{relation_count}</td></tr>"
     puts "</table>"
 
-    puts "<h2 id="top-traces">Top 50 users for uploads of GPS data</h2>"
+    puts '<h2 id="top-traces">Top 50 users for uploads of GPS data</h2>'
     puts "<table>"
     puts "<tr><th>User</th><th>Number of Points</th></tr>"
 
@@ -41,7 +41,7 @@ begin
 
     puts "</table>"
 
-    puts "<h2 id="number-of-editors">Number of users editing over the past...</h2>"
+    puts '<h2 id="number-of-editors">Number of users editing over the past...</h2>'
     puts "<table>"
     puts "<tr><th>Data Type</th><th>Day</th><th>Week</th><th>Month</th></tr>"
 
@@ -59,7 +59,7 @@ begin
 
     puts "</table>"
 
-    puts "<h2 id="top-editors">Top users editing over the past...</h2>"
+    puts '<h2 id="top-editors">Top users editing over the past...</h2>'
     puts "<table>"
     puts "<tr><th>Day</th><th>Week</th><th>Month</th></tr>"
 
@@ -87,7 +87,7 @@ rescue StandardError => e
   puts "<p><em>Exception: #{e}</em><br />#{e.backtrace.join('<br />')}</p>"
 end
 
-puts "<p>Report took #{Time.new - start_time} seconds to run</p>"
+puts "<p>Report took #{Time.now.utc - start_time} seconds to run</p>"
 puts "</body>"
 puts "</html>"