lib/rpush/reflection_public_methods.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rpush
  @reflection_stack ||= [ReflectionCollection.new]

  class << self
    attr_reader :reflection_stack
  end

  def self.reflect
    yield reflection_stack[0] if block_given?
  end
end