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
path: root/vendor
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 06:10:19 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 06:10:19 +0300
commit0a0dcc392ca69b7f0567bff6bc1040ded035a11b (patch)
tree1a892633e20f593140612e700a31c4460b2a08c0 /vendor
parent272c39ac05e0d68444114aed58ef2b44e1af30d6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'vendor')
-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