我正在编写一个我想在有或没有 Rails 环境的情况下使用的 gem。
我有一个Configuration
允许配置 gem 的类:
module NameChecker
class Configuration
attr_accessor :api_key, :log_level
def initialize
self.api_key = nil
self.log_level = 'info'
end
end
class << self
attr_accessor :configuration
end
def self.configure
self.configuration ||= Configuration.new
yield(configuration) if block_given?
end
end
现在可以这样使用:
NameChecker.configure do |config|
config.api_key = 'dfskljkf'
end
但是,我似乎无法从我的 gem 中的其他类中访问我的配置变量。例如,当我spec_helper.rb
像这样配置 gem 时:
# spec/spec_helper.rb
require "name_checker"
NameChecker.configure do |config|
config.api_key = 'dfskljkf'
end
并从我的代码中引用配置:
# lib/name_checker/net_checker.rb
module NameChecker
class NetChecker
p NameChecker.configuration.api_key
end
end
我得到一个未定义的方法错误:
`<class:NetChecker>': undefined method `api_key' for nil:NilClass (NoMethodError)
我的代码有什么问题?