I can't install paperclip

后端 未结 1 577
刺人心
刺人心 2020-12-11 04:19

I\'m new in rails, I need to install Peperclip (https://github.com/thoughtbot/paperclip) and i can\'t, I have looked every tutorial I can find and I haven\'t been able to fi

1条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-11 05:16

    It looks like an existing issue in paperclip. You would need to source paperclip directly from GitHub.

    Refer to this open issue in Paperclip

    You can source paperclip from Github by adding the following line in your Gemfile:

    gem 'paperclip', github: 'thoughtbot/paperclip'
    

    -OR-

    gem 'paperclip', :git => "git://github.com/thoughtbot/paperclip.git"
    

    0 讨论(0)
提交回复
热议问题