We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My Ruby gem supports older versions of Ruby. I followed the instructions as per https://github.com/e2/ruby_dep#eg-in-your-gemspec-file by inserting that snippet into my gemspec file.
But I'm encountering build failures in TravisCI with the following error: Install 'ruby_dep' gem before building this gem.
Install 'ruby_dep' gem before building this gem
See https://travis-ci.org/gchan/wits/jobs/162160040#L175 for reference
Any guidance would be appreciated.
The text was updated successfully, but these errors were encountered:
Yes, it's a chicken-and-egg problem.
You need ruby_dep already installed if you're using it in your gemspec file.
You'll probably need to add it as a Travis pre-build step, e.g.:
install: - gem install ruby_dep
I'll have to figure it out and update the README...
Sorry, something went wrong.
No branches or pull requests
My Ruby gem supports older versions of Ruby. I followed the instructions as per https://github.com/e2/ruby_dep#eg-in-your-gemspec-file by inserting that snippet into my gemspec file.
But I'm encountering build failures in TravisCI with the following error:
Install 'ruby_dep' gem before building this gem
.See https://travis-ci.org/gchan/wits/jobs/162160040#L175 for reference
Any guidance would be appreciated.
The text was updated successfully, but these errors were encountered: