mbleigh / acts-as-taggable-on

A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts.
http://mbleigh.lighthouseapp.com/projects/10116-acts-as-taggable-on
MIT License
4.96k stars 1.2k forks source link

Installation not working on Rails 6.0 stable #961

Closed tolesco closed 4 years ago

tolesco commented 5 years ago

I'm getting an error when I try to install it with Rails 6.0.0 stable.

With gem 'acts-as-taggable-on', '~> 6.0' on the Gemfile I get this error:

Screen Shot 2019-08-20 at 12 27 06 AM

I fixed changing to this line in the Gemfile:

gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on'

And I get the output:

Using acts-as-taggable-on 6.0.1 (was 5.0.0) from https://github.com/mbleigh/acts-as-taggable-on (at master@fbf2b60).

Bundle completed, no error present.

Any idea of why is this occurring? It's safe to use 6.0.1 in production?

sandergroen commented 5 years ago

@tolesco you installed the gem from the master branch which is in development. So I would not recommend using that in production I think you could better wait for version 6.0.1 to be released. I would like to upgrade the project I'm currently working on to Rails version 6.0 so I hope version 6.0.1 will be released soon.

tolesco commented 5 years ago

@sandergroen thanks for the tip, I'll wait for version 6.1 as you told me: D

ghost commented 4 years ago

Any news on this?

engwan commented 4 years ago

@seuros I see that the PR has been merged. Is there a plan to publish the release to rubygems soon? Thanks!