我一直试图从github安装插件到我的RoR应用程序一段时间没有成功。 这是我在应用程序的根目录中尝试使用我的cmd(cmd使用ruby,我有bitnami堆栈):
ruby脚本/插件安装git://github.com/andre/geokit-rails.git
ruby脚本/插件安装http://github.com/andre/geokit-rails.git/
我一直在:
未找到插件[“git://github.com/andre/geokit-rails.git”]
我安装了msysgit并使用我的公钥设置了github帐户,我需要在msysgit中做些什么才能让它工作?
尝试
脚本/插件安装git://github.com/andre/geokit-rails.git
或 ./script/plugin安装git://github.com/andre/geokit-rails.git
在msys.bat中的(不确定我是否应该在ruby cmd或msysgit bash中输入命令)在app root dir中给我这个:
/ usr / bin / env:ruby:没有这样的文件或目录
我也试过替换:stream.reopen(RUBY_PLATFORM =〜/ mswin /?'NUL:':'/ dev / null') with:stream.reopen('NUL:') 在:\ lib \ ruby \ gems \ 1.8 \ gems \ activesupport-2.3.5 \ lib \ active_support \ core_ext \ kernel \ reporting.rb
我是一个完整的菜鸟所以我可能会遗漏一些非常基本的东西, 我希望有人能帮助因为我已经坚持了一整天 这对我的截止日期来说并不是很好。
顺便说一下,我在winxp,bitnami堆栈上使用了带有ruby 1.8.7的rails 2.3.5。
欢呼声
答案 0 :(得分:0)
你可以尝试:
ruby script/plugin install git://github.com/andre/geokit-rails.git/
- 包括尾部斜杠。我在article中找到了这个建议,尤其是评论中似乎包含了大量有趣的信息。
答案 1 :(得分:0)
最后它看起来像这样做: 在vendor / plugins中
git clone git://github.com/andre/geokit-rails.git
我不知道它是否会产生不良影响,我会及时通知你。 (该解决方案由Jhonson in here发布)
答案 2 :(得分:0)
您可以尝试这样: 只需从github下载zip文件,将其解压缩到一个文件夹并将其复制到vendor / plugins文件夹。