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.
2 parents 1f550d1 + 3a8a6a0 commit 1e0edbcCopy full SHA for 1e0edbc
travis/script/predicate_functions.sh
@@ -70,18 +70,6 @@ function is_ruby_25_plus {
70
fi
71
}
72
73
-function is_mri_27 {
74
- if is_mri; then
75
- if ruby -e "exit(RUBY_VERSION.to_f == 2.7)"; then
76
- return 0
77
- else
78
- return 1
79
- fi
80
81
82
83
-}
84
-
85
function rspec_rails_compatible {
86
if is_ruby_25_plus; then
87
return 0
@@ -106,11 +94,7 @@ function additional_specs_available {
106
94
function documentation_enforced {
107
95
if [ -x ./bin/yard ]; then
108
96
if is_mri_2plus; then
109
- if is_mri_27; then
110
111
112
113
97
+ return 0
114
98
else
115
99
return 1
116
100
0 commit comments