You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A workaround is to specify -rreadline when invoking ruby in the wrapper script:
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.exec"$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup -rreadline "$SELFDIR/lib/app/hello.rb"
The text was updated successfully, but these errors were encountered:
When requiring readline in the packaged app, the following warning is displayed when running it after packaging:
To reproduce change the
hello.rb
file in tutorial 2 as follows:A workaround is to specify
-rreadline
when invoking ruby in the wrapper script:The text was updated successfully, but these errors were encountered: