我写,我想使用和不使用Rails的环境中工作的瑰宝。
我有一个Configuration
类,允许创业板的配置:
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
不过,我似乎并没有能够从我的宝石withing其他类访问我的配置变量。 例如,当我配置的宝石在我spec_helper.rb
像这样:
# 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)
什么是错我的代码?