1

我遇到了 Warbler 没有打包一些宝石的问题。宝石是:

'虾 0.11.1' - https://github.com/sandal/prawn
'prawnto 0.0.4' - https://github.com/jlsync/prawnto
'ttfunk 1.0.1'

我正在运行 Rails 3.0.5、JRuby 1.6.0 和 Warbler 1.2.1。我试图告诉 Warbler 将这些 gem 包含在 warble.rb 配置文件中,但这也没有奏效。

有任何想法吗?

4

1 回答 1

1

您应该将这些规范放在 Gemfile 中,这样应该可以。

例如:

source <repo-url>
git 'https://github.com/sandal/prawn' do
gem 'prawn'
end
...
于 2011-04-06T18:59:45.040 回答