We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 619731d commit c8eb5a3Copy full SHA for c8eb5a3
travis/script/clone_all_rspec_repos
@@ -3,6 +3,8 @@ set -e -x
3
source script/functions.sh
4
5
if is_mri; then
6
+ set_rails_version_for_rspec_rails
7
+
8
pushd ..
9
10
clone_repo "rspec"
travis/script/functions.sh
@@ -49,6 +49,12 @@ function is_mri_192 {
49
fi
50
}
51
52
+function set_rails_version_for_rspec_rails {
53
+ if ruby -e "exit(RUBY_VERSION < '1.9.3')"; then
54
+ export RAILS_VERSION=3.2.17
55
+ fi
56
+}
57
58
function rspec_support_compatible {
59
if [ "$MAINTENANCE_BRANCH" != "2-99-maintenance" ] && [ "$MAINTENANCE_BRANCH" != "2-14-maintenance" ]; then
60
return 0
0 commit comments