ruby – 在编写宝石时设置配置设置

前端之家收集整理的这篇文章主要介绍了ruby – 在编写宝石时设置配置设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个我想要和没有Rails环境一起工作的宝石.

我有一个配置类允许配置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)

我的代码有什么问题?

解决方法

尝试重构:
def self.configuration
  @configuration ||=  Configuration.new
end

def self.configure
  yield(configuration) if block_given?
end
原文链接:https://www.f2er.com/ruby/273297.html

猜你在找的Ruby相关文章