Gem 自己写一个 lib 或者 gem,附带 config 的模版类

mr_night · May 24, 2016 · 1389 hits
module Demo
  attr_accessor :configuration

  class Configuration
    attr_accessor :public_key, :private_key

    def initialize
    end
  end

  def self.configure
    yield(self.configuration)
  end

  def self.configuration
    @configuration ||= Configuration.new
  end
end

initialize/demo.rb

Demo.configure do |config|
  config.public_key  = 'xxx'
  config.private_key =  'xxx'
end

参考:http://brandonhilkert.com/blog/ruby-gem-configuration-patterns

No Reply at the moment.
You need to Sign in before reply, if you don't have an account, please Sign up first.