summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2017-01-02 16:12:06 +0100
committerJacob Vosmaer <jacob@gitlab.com>2017-01-02 16:29:14 +0100
commit3fe9cea03a6384fd8f57f10e172c134ed5c0552d (patch)
tree1148f745058b8885cd07edeb414f5822b05d616f /Makefile
parenta3712cc18de8283b25c3a8a034ecc8c9b7feca48 (diff)
downloadgitlab-shell-redis-full-gem.tar.gz
Vendor redis_rb from Rubygems, not GitHubredis-full-gem
Also just include the entire gem. Space used is negligible and this way we don't have to think about what to leave in/out. Create a vendor-gem script in Ruby instead of Make.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 2a78178..0000000
--- a/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-REDIS_RB_VERSION=v3.3.0
-REDIS_RB_VENDOR_DIR=lib/vendor/redis
-PWD=`pwd`
-
-all:
-
-update-redis:
- rm -rf $(REDIS_RB_VENDOR_DIR)
- git clone -b $(REDIS_RB_VERSION) https://github.com/redis/redis-rb.git $(REDIS_RB_VENDOR_DIR)
- rm -rf $(REDIS_RB_VENDOR_DIR)/.git
-
-.PHONY=update-redis