class Slimy::Configuration
Class for configration of Slimy
tooling
Attributes
reporter[RW]
Public Class Methods
default()
click to toggle source
# File lib/slimy/config.rb, line 12 def self.default @@default ||= Configuration.new end
new()
click to toggle source
# File lib/slimy/config.rb, line 6 def initialize @reporter = nil end
Public Instance Methods
configure() { |self| ... }
click to toggle source
# File lib/slimy/config.rb, line 16 def configure yield(self) if block_given? end