我使用bundler创建了gem,并根据文档建议将所有ruby文件放入'/ lib'。 但我有一个问题,在构建了“rake build”命令和安装(gem install pkg / gem)之后我无法使用它,因为:
LoadError:无法加载此类文件 - mygem / client
这是因为在主文件中我尝试要求在lib / mygem / client.rb中使用'mygem / client.rb' 它不起作用:/
这是我的gemspec:
# 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
答案 0 :(得分:0)
假设您的主文件名为mygem.rb
且位于lib
文件夹中,您应该可以要求文件lib/mygem/client.rb
:
require 'mygem/client'
请注意,我没有使用.rb
扩展程序。