微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – 如何从heroku上的github中提取插件?

的Gemfile:
...
gem 'paperclip',:git => 'git@github.com:mdrozdziel/paperclip.git'
...

在推送应用程序时,我收到以下错误.我链接的回购是公开的.

Fetching git@github.com:mdrozdziel/paperclip.git
   Failed to add the host to the list of kNown hosts (/home/group_home/.ssh/kNown_hosts).
   Permission denied (publickey).
   fatal: The remote end hung up unexpectedly
   An error has occurred in git when running `git clone "git@github.com:mdrozdziel/paperclip.git" "/disk1/tmp/build_28099_23931178722320/.bundle/gems/ruby/1.8/cache/bundler/git/paperclip-c032df0dc0463697a1ce5ae3761bec95be700815" --bare --no-hardlinks. Cannot complete bundling.

知道这里有什么问题吗?控制台显示/ home / group_home /不存在…

解决方法

看起来:你提供的git param会导致捆绑器尝试将其拉过ssh.您需要使用公共存储库地址.请尝试以下方法
gem 'paperclip',:git => 'git://github.com/mdrozdziel/paperclip.git'

原文地址:https://www.jb51.cc/ruby/265598.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐