jpignata/switches

View on GitHub
lib/switches/configuration.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Switches
  class Configuration
    attr_accessor :backend

    def initialize
      yield self if block_given?
    end
  end
end