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:
Diffstat (limited to 'vendor/gems/attr_encrypted/test/run.sh')
-rwxr-xr-xvendor/gems/attr_encrypted/test/run.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/gems/attr_encrypted/test/run.sh b/vendor/gems/attr_encrypted/test/run.sh
deleted file mode 100755
index 7e9b777eebf..00000000000
--- a/vendor/gems/attr_encrypted/test/run.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env sh -e
-
-for RUBY in 1.9.3 2.0.0 2.1 2.2
-do
- for RAILS in 2.3.8 3.0.0 3.1.0 3.2.0 4.0.0 4.1.0 4.2.0
- do
- if [[ $RUBY -gt 1.9.3 && $RAILS -lt 4.0.0 ]]; then
- continue
- fi
- RBENV_VERSION=$RUBY ACTIVERECORD=$RAILS bundle && bundle exec rake
- done
-done