这里我的问题:Warbler不支持通过gemfile中的路径包含的gem。然而,我需要为我的工作做到这一点。重要的是,包含的宝石在战争档案中作为一个简单的rubygem打包和处理。直到现在我都试图操纵捆绑器,所以当规范到达warbler / traits / bundler.rb(这是规范被打包到存档的地方)时,它已经有'Bundler :: Source :: Rubygems'作为源。问题是它需要从路径构建和安装,但我无法处理它以在规范或源中的任何位置传递路径。它已经可以工作,gem作为rubygem构建,安装和打包到存档中,并在Lockfile中的GEM下列出,但只是编码错误(它都是参考特定的gem并且路径输入清楚)
这是我的代码:
warbler / lib / warbler / traits / bunlder.rb line:60
case spec.source
when ::Bundler::Source::Git
config.bundler[:git_specs] ||= []
config.bundler[:git_specs] << spec
when ::Bundler::Source::Path
$stderr.puts("warning: Bundler `path' components are not currently supported.",
"The `#{spec.full_name}' component was not bundled.",
"Your application may fail to boot!")
else
##################################################################### MINE
if spec.name == "charla_common"
path = ::Bundler::GemHelper.new("../../common/trunk", spec.name).install_gem
end
##################################################################### MINE END
config.gems << spec
end
这是gem安装路径的地方
Bundler / lib / bundler / dsl.rb line:120
def source(source, options = {})
############################################################### MINE
if source.class == Bundler::Source::Path
options[:path] = source.options["path"]
source = "https://rubygems.org"
end
############################################################### MINE END
case source
when :gemcutter, :rubygems, :rubyforge then
Bundler.ui.warn "The source :#{source} is deprecated because HTTP " \
"requests are insecure.\nPlease change your source to 'https://" \
"rubygems.org' if possible, or 'http://rubygems.org' if not."
@rubygems_source.add_remote "http://rubygems.org"
return
when String
# ensures that the source in the lockfile is shown only once
unless options[:prepend]
@rubygems_source.add_remiote source
end
return
else
@source = source
if options[:prepend]
@sources = [@source] | @sources
else
@sources = @sources | [@source]
end
yield if block_given?
return @source
end
ensure
@source = nil
end
答案 0 :(得分:0)
我不确定这是否适合你,但为了解决这个问题,我在vendor / cache中创建了包含gem的路径中的符号链接。
E.g。 vendor/cache/gem_name -> ../../../gem_name
。