plentz / lol_dba

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.
1.59k stars 69 forks source link

Bundle install error for Rails 6.0.1 #113

Closed isubas closed 4 years ago

isubas commented 5 years ago

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:

The error seems to be caused by the < 6.0 version constraint in the gemspec file.

plentz commented 4 years ago

I have made initial work at https://github.com/plentz/lol_dba/pull/114/, but there are some tests to be fixed before I can ship it.

plentz commented 4 years ago

v2.2.0 is out 😉

isubas commented 4 years ago

Thank you @plentz