当前位置:  开发笔记 > 后端 > 正文

如何从Github直接使用边缘版本的Sunspot,而不是通过Rubygems?

如何解决《如何从Github直接使用边缘版本的Sunspot,而不是通过Rubygems?》经验,为你挑选了1个好方法。

为了克服solr的错误,我需要运行一个比Rubysms版本的Sunspot中包含的版本更新的版本.我注意到在Github上有一个最近的提交,其中包括更新版本的Solr.

如何配置我的Gemfile直接从repo而不是RubyGems.目前我有以下几点;

gem 'sunspot'
gem 'sunspot_rails'
gem 'sunspot_test'
gem 'sunspot_cell', :git => 'git://github.com/zheileman/sunspot_cell.git'

group :development, :test do
  gem 'sunspot_solr'
  gem 'progress_bar'
end

如果我只是将回购添加到太阳黑子宝石线,当我运行捆绑时,一切都会崩溃.由于sunspot_solr gem 在太阳黑子回购中,我不知道我应该使用哪条线从回购中获取.

谢谢,格雷姆



1> Simmo..:

得到它了!答案是指向github上的主要回购,并在适当的地方使用require将其缩小到相关的子部分.

编辑过的Gemfile如下;

gem 'sunspot', :git => "git://github.com/sunspot/sunspot.git"
gem 'sunspot_rails', :git => "git://github.com/sunspot/sunspot.git", :require =>  "sunspot_rails"
gem 'sunspot_test'
gem 'sunspot_cell', :git => 'git://github.com/zheileman/sunspot_cell.git'

group :development, :test do
  gem 'sunspot_solr', :git => "git://github.com/sunspot/sunspot.git", :require => "sunspot_solr"
  gem 'progress_bar'
end

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有