有什么可以阻止创建gem规范文件?

时间:2009-06-21 17:46:14

标签: ruby-on-rails ruby rubygems specifications

我尝试更新没有.specification文件的gem上的规范。

1. cd {application_home_directory}
2. rake gems:refresh_specs

当我这样做时,我收到了递归警告:

config.gem: Unpacked gem in vendor/gems has no specification file. 
Run 'rake gems:refresh_specs' to fix this.

我也尝试了这个,它也没有创建没有任何错误/警告的规范:

1. cd vendor/gems/gemname
2. gem specification gemname > .specification

在这些情况下,有什么可以阻止创建gem规范文件?

1 个答案:

答案 0 :(得分:2)

您的environment.rb文件中的gems是否有config.gem个语句?根据我的经验,您需要在配置中设置宝石,以便rake gems:refresh_specs了解它们。