8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'shoes-swt/lib/shoes/swt/generate_backend.rb', line 8
def validate
return if RUBY_ENGINE == "jruby"
puts <<~EOS
*******************************************************************************
The shoes-swt backend requires a 9.X version of JRuby.
You are running the following Ruby instead:
#{RUBY_DESCRIPTION}
Please download JRuby from http://jruby.org (or your favorite Ruby version
manager), then check our https://github.com/shoes/shoes4#installing-shoes-4 to
get Shoes installed.
Sorry for the inconvenience!
*******************************************************************************
EOS
exit 1
end
|