lynndylanhurley / devise_token_auth

Token based authentication for Rails JSON APIs. Designed to work with jToker and ng-token-auth.
Do What The F*ck You Want To Public License
3.52k stars 1.14k forks source link

Different rails versions supported #1622

Closed owalmirneto closed 1 month ago

owalmirneto commented 1 month ago

I'm trying update my rails application version to 7.1.3.2, but I can't because there is different rails versions supported in rubygems and GitHub


My current versions:

rails (7.0.8.1)
  ...
devise (4.9.3)
  bcrypt (~> 3.0)
  orm_adapter (~> 0.1)
  railties (>= 4.1.0)
  responders
  warden (~> 1.2.3)
devise_token_auth (1.2.2)
  bcrypt (~> 3.0)
  devise (> 3.5.2, < 5)
  rails (>= 4.2.0, < 7.1)
                   ^^^^^

My issue:

Like a said in https://rubygems.org/gems/devise_token_auth supports only < 7.1

Screenshot 2024-05-13 at 17 41 18

And here in github https://github.com/lynndylanhurley/devise_token_auth/blob/master/devise_token_auth.gemspec#L25 supports < 7.2

Screenshot 2024-05-13 at 17 55 58

Because that, in my Gemfile I've to use

gem "devise_token_auth", github: "lynndylanhurley/devise_token_auth"

Do you intend to push a new version for add < 7.2 to rubygems?

MaicolBen commented 1 month ago

It was done in 1.2.3, I just tested in a rails repo