savonarola/pulse_meter_core

View on GitHub
lib/pulse_meter/command_aggregator/sync.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'singleton'

module PulseMeter
  module CommandAggregator
    class Sync
      include Singleton

      def redis
        PulseMeter.redis
      end

      def method_missing(*args, &block)
        redis.send(*args, &block)
      end
    end
  end
end