【发布时间】:2017-07-04 03:42:24
【问题描述】:
我使用 bundler 创建了 gem,并按照文档的建议将我的所有 ruby 文件放入“/lib”。 但是我有一个问题,在构建了“rake build”命令并安装的gem(gem install pkg/gem)之后我不能使用它,因为:
LoadError: 无法加载此类文件 -- mygem/client
这是因为在主文件中我尝试要求 lib/mygem/client.rb 中的“mygem/client.rb” 它不起作用:/
这是我的宝石规格:
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'diggy/version'
Gem::Specification.new do |spec|
spec.name = "diggy"
spec.version = Diggy::VERSION
spec.authors = [""]
spec.email = [""]
spec.summary = %q{: Write a short summary, because Rubygems requires one.}
spec.description = %q{: Write a longer description or delete this line.}
spec.homepage = ""
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = `git ls-files -z`.split("\x0")
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 10.0"
end
【问题讨论】:
-
您能否添加命令
gem contents mygem(在本例中为gem contents diggy)和git status(在您的gems 开发目录中)的结果。