Reputation: 73
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
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