Sha256: 4ef8ec24aa7cf83ea441cd80783a9fca5a52e97b076fce361f173bbc4c5f7cea

Contents?: true

Size: 196 Bytes

Versions: 4

Compression:

Stored size: 196 Bytes

Contents

require 'singleton'

module Dicer
  class Config
    attr_accessor :auto_supply

    def initialize
      @auto_supply = true
    end
  end

  def self.config
    @config ||= Config.new
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dicer-0.3.0 lib/dicer/config.rb
dicer-0.2.0 lib/dicer/config.rb
dicer-0.1.0 lib/dicer/config.rb
dicer-0.0.1 lib/dicer/config.rb