DEBSOURCES
Skip Quicknav
sources / ruby-flipper / 0.26.2-2 / lib / flipper / instrumenters / noop.rb
123456789
module Flipper module Instrumenters class Noop def self.instrument(_name, payload = {}) yield payload if block_given? end end end end