anycable / anycable-rails

AnyCable for Ruby on Rails applications
https://anycable.io
MIT License
499 stars 35 forks source link

Relax the dependency on the `rails` gem #142

Closed avlazarov closed 4 years ago

avlazarov commented 4 years ago

Hey folks!

I'm trying to update a Rails app from 5 to 6, however some of the new active* gems have dependencies that cannot be updated due to the app's code. For example, actionmailbox wants us to update to mail 2.7.1 and the latter breaks a lot of our code that relies on a previous version of that gem. Instead of adding the whole rails gem, we decided to include only what we need and skip actionmailbox (and a few other). The problem now is that anycable-rails depends on rails.

So my question is – can the dependency on rails be relaxed to just railties and actioncable?

palkan commented 4 years ago

can the dependency on rails be relaxed to just railties and actioncable?

I think so. Will check.

avlazarov commented 4 years ago

Also globalid, forgot about that one.

palkan commented 4 years ago

Release 1.0.4.

Have a painless upgrade!)

avlazarov commented 4 years ago

:bow: