lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts.
When trying to do bundle install, we receive an error like the following:
Downloading lol_dba-2.1.8 revealed dependencies not in the API or the lockfile
(actionpack (>= 3.0, < 6.0), activerecord (>= 3.0, < 6.0), railties (>= 3.0, < 6.0))
Used gem versions:
rails 6.0.1
lol_dba 2.1.8
The error seems to be caused by the < 6.0 version constraint in the gemspec file.
When trying to do
bundle install
, we receive an error like the following:Used gem versions:
The error seems to be caused by the
< 6.0
version constraint in the gemspec file.