Sha256: 3ef00288417387b1d78570d9796b851b52e8351d8ccf2a7f9b31334d19ea711b

Contents?: true

Size: 284 Bytes

Versions: 1

Compression:

Stored size: 284 Bytes

Contents

module Albacore
  class << self
    def configure
      @configuration ||= Configuration.new
      yield(@configuration) if block_given?
      @configuration
    end
  end

  class Configuration
   	attr_accessor :yaml_config_folder
  	attr_accessor :log_level
 end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 lib/albacore/config/config.rb