我写了一个需要一个gem作为依赖的插件.
我必须在哪里定义这个依赖关系?
我试图在vendor / plugins / my_plugin /中创建一个Gemfile,但是bundle install没有找到这个文件.
解决方法
好.我已经解决了
1)在vendor / plugins / my_plugin中创建一个Gemfile,如:
# Gemfile source "http://rubygems.org" gemspec
2)创建一个gemspec文件.在文件夹vendor / plugins中运行此命令:
bundle gem my_plugin
3)在vendor / plugins / my_plugin中打开gemspec文件,并在关键字结束之前添加:
s.add_dependency('will_paginate','~> 3.0.pre2')
(在这个例子中,我已经使用了will_paginate my_plugin如何需要dipendency)
4)现在进入你的rails应用程序并编辑Gemfile,添加:
gem 'my_plugin',:path=>'vendor/plugins/my_plugin'
指定的路径是您的插件已经在rails应用程序的vendor / plugins文件夹中.
当然,当部署rails应用程序时,您不再需要指定:path参数.
5)现在在rails应用程序root中做:
bundle install
并且安装了my_plugin(在这种情况下为will_paginate)的依赖关系.
感谢Sinetris的初步投入.