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 4db69d4Copy full SHA for 4db69d4
travis/script/predicate_functions.sh
@@ -62,18 +62,6 @@ function is_ruby_23_plus {
62
fi
63
}
64
65
-function is_mri_27 {
66
- if is_mri; then
67
- if ruby -e "exit(RUBY_VERSION.to_f == 2.7)"; then
68
- return 0
69
- else
70
- return 1
71
- fi
72
73
74
75
-}
76
-
77
function rspec_rails_compatible {
78
if is_ruby_23_plus; then
79
return 0
@@ -98,11 +86,7 @@ function additional_specs_available {
98
86
function documentation_enforced {
99
87
if [ -x ./bin/yard ]; then
100
88
if is_mri_2plus; then
101
- if is_mri_27; then
102
103
104
105
89
+ return 0
106
90
else
107
91
return 1
108
92
0 commit comments