Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@vanlanduyt.co>2017-07-20 18:32:17 +0300
committerBob Van Landuyt <bob@vanlanduyt.co>2017-08-31 15:10:04 +0300
commitbde39322f1b0a24b03c949abbf34b21859f9a5c0 (patch)
tree8f6e13d1429be0b8df995e7d6e6c090721409676 /lib/gitlab/utils.rb
parent1eb30cfb758d9fa576f1164fe7c5f520867ce378 (diff)
Add a linter for PO files
Diffstat (limited to 'lib/gitlab/utils.rb')
-rw-r--r--lib/gitlab/utils.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/utils.rb b/lib/gitlab/utils.rb
index 9670c93759e..abb3d3a02c3 100644
--- a/lib/gitlab/utils.rb
+++ b/lib/gitlab/utils.rb
@@ -42,5 +42,9 @@ module Gitlab
'No'
end
end
+
+ def random_string
+ Random.rand(Float::MAX.to_i).to_s(36)
+ end
end
end