Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fatal error: Panel requires Ruby 1.8 (Ruby 1.9 is not supported). #540

Open
GoogleCodeExporter opened this issue Mar 14, 2015 · 0 comments

Comments

@GoogleCodeExporter
Copy link

SYSTEM Debian 7.5 stable (Wheezy) (64bits)

error message

ruby --version
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]

apt-get -y remove ruby1.9*
apt-get -y install ruby1.8

ruby --version
ruby 1.8.7 (2012-02-08 patchlevel 358) [x86_64-linux]


propose update ai.sh

change

if [ "$DISTRIB_ID" = "Ubuntu" -o "$DISTRIB_ID" = "Debian" ]; then
    apt-get update
    apt-get -y install ruby rubygems libsqlite3-ruby libopenssl-ruby rake
  fi

by

if [ "$DISTRIB_ID" = "Ubuntu" -o "$DISTRIB_ID" = "Debian" ]; then
    apt-get update
    apt-get -y remove ruby1.9*
    apt-get -y install ruby1.8 rubygems libsqlite3-ruby libopenssl-ruby rake
  fi

100% work

Original issue reported on code.google.com by [email protected] on 18 Jun 2014 at 6:49

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant