diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-06-10 17:28:32 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-06-10 17:32:27 +0200 |
commit | 5cd99d57102678befbb3a831054e0ab566f067d7 (patch) | |
tree | 7a7a2051b956cca0bc8ef326e662ad6e874d94b5 /lib/gitlab_keys.rb | |
parent | 529880065ecaf4fbcc3bf1f3da6b08908527b997 (diff) | |
download | gitlab-shell-5cd99d57102678befbb3a831054e0ab566f067d7.tar.gz |
Expliclity require 'timeout' from the stdlib
This avoids getting the following error on some platforms:
NameError: uninitialized constant GitlabKeys::Timeout
Diffstat (limited to 'lib/gitlab_keys.rb')
-rw-r--r-- | lib/gitlab_keys.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab_keys.rb b/lib/gitlab_keys.rb index 52a982b..3bdf6c6 100644 --- a/lib/gitlab_keys.rb +++ b/lib/gitlab_keys.rb @@ -1,4 +1,5 @@ require 'tempfile' +require 'timeout' require_relative 'gitlab_config' require_relative 'gitlab_logger' |