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 1ae84fa commit cec4142Copy full SHA for cec4142
travis/script/predicate_functions.sh
@@ -54,8 +54,8 @@ function is_mri_2plus {
54
fi
55
}
56
57
-function is_ruby_23_plus {
58
- if ruby -e "exit(RUBY_VERSION.to_f >= 2.3)"; then
+function is_ruby_25_plus {
+ if ruby -e "exit(RUBY_VERSION.to_f >= 2.5)"; then
59
return 0
60
else
61
return 1
@@ -75,7 +75,7 @@ function is_mri_27 {
75
76
77
function rspec_rails_compatible {
78
- if is_ruby_23_plus; then
+ if is_ruby_25_plus; then
79
80
81
travis/script/update_rubygems_and_install_bundler
@@ -2,7 +2,7 @@
2
set -e
3
source script/functions.sh
4
5
-if is_ruby_23_plus; then
+if is_ruby_25_plus; then
6
yes | gem update --system
7
yes | gem install bundler
8
0 commit comments