我遇到的问题是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在warble.rb配置文件中包含这些宝石,但这也没有用。
有什么想法吗?
答案 0 :(得分:1)
你应该将这些规范放在Gemfile中,这应该可行。
e.g:
source <repo-url>
git 'https://github.com/sandal/prawn' do
gem 'prawn'
end
...