-
Notifications
You must be signed in to change notification settings - Fork 106
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
Your install instructions and script are foobar #69
Comments
have a look at https://github.com/msjit/testcasedb |
I am having a similar experience installing and running Tarantula and using a different solution isn't ideal but I might have to resort to it.
The approach I've taken is to modify the install script by doing the following things:
Different versions of Ruby break on different dependencies (native extensions usually) but I haven't had any meaningful progress resolving which Ruby to use. I'm assuming there is a version that does work because it was probably run once or twice before pushing it and it wouldn't be hard to miss this kind of issue. |
The install script doesn't make any sense, even for CentOS.
First, the requirement is for Ruby 1.9.3, but the script tries to install the ruby 1.8-dev package:
Then, it insists on being executed as root, but tries to run the Rails bundle install as root as well. Not fatal during install, but would be once I try to run the rails server as the
www-data
user:The bundler finally ended up failing on a
libxml
requirement that was not installed by the script, prior to running the bundler.So, I took over the process myself at that point. After installing libxml2, and ruby-libxml, I tried to run through the basic Rails setup myself, and here's as far as I got:
And that's as far as I've gotten. Here's what my database looks like:
Hope this helps,
Greg.
The text was updated successfully, but these errors were encountered: