Home > front end >  How to setup dev environment on Github codespaces to contribute to Rails?
How to setup dev environment on Github codespaces to contribute to Rails?

Time:01-12

I grew an interest in contributing to Rails after watching Eileen's Talk. To make things easier, I forked the repo and I opened it in Github Codespaces. After running bundle install, I wanted to run some tests but I kept getting this error:

Your lockfile doesn't include a valid resolution.
You can fix this by regenerating your lockfile or trying to manually editing the bad locked gems to a version that satisfies all dependencies.
The unmet dependencies are:
* activesupport (>= 3.0, < 6.2), depended upon delayed_job-4.1.9, unsatisfied by activesupport-7.1.0.alpha
* activerecord (>= 3.0, < 6.2), depended upon delayed_job_active_record-4.1.6, unsatisfied by activerecord-7.1.0.alpha

I tried updating bundler and downgrading the gems in questions to fix the dependency issue. Neither worked. Any ideas?

CodePudding user response:

According to the Rails core team member Rafael França:

This “error” is just a warning. It should not impact the setup, and you can just ignore it.

  •  Tags:  
  • Related