summaryrefslogtreecommitdiff
path: root/lib/gitlab_net.rb
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2016-05-11 12:18:40 -0700
committerStan Hu <stanhu@gmail.com>2016-05-12 07:00:19 -0500
commitd8f3b9bce912b9c50e13ea71ae7185aad6f71b91 (patch)
tree2011662a009a0753e015674570ccbf3cc9e3e2ee /lib/gitlab_net.rb
parentb99bc5d422bced155ddb69b83858b5b3600f5bac (diff)
downloadgitlab-shell-d8f3b9bce912b9c50e13ea71ae7185aad6f71b91.tar.gz
Add redis-rb as a vendored library
`make update-redis` will clone the library and adjust the paths properly
Diffstat (limited to 'lib/gitlab_net.rb')
-rw-r--r--lib/gitlab_net.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_net.rb b/lib/gitlab_net.rb
index 8e1fe39..e9f8ffd 100644
--- a/lib/gitlab_net.rb
+++ b/lib/gitlab_net.rb
@@ -1,12 +1,12 @@
require 'net/http'
require 'openssl'
require 'json'
-require 'redis'
require_relative 'gitlab_config'
require_relative 'gitlab_logger'
require_relative 'gitlab_access'
require_relative 'httpunix'
+require_relative 'vendor/redis'
class GitlabNet
class ApiUnreachableError < StandardError; end