KilgoreTrout
KilgoreTrout

Reputation: 73

How to install a plugin in RAILS 5.x?

I am trying to install a plugin in RAILS. I tried something like this:

rails plugin install git://github.com/thoughtbot/paperclip.git

but does not work.

Upvotes: 0

Views: 394

Answers (1)

Max Woolf
Max Woolf

Reputation: 4058

Rails 5 no longer supports plugins. This support was dropped in Rails 3.0

You should install Paperclip by using the gem

Upvotes: 5

Related Questions