celluloid/celluloid

View on GitHub
lib/celluloid/internals/stack/summary.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Celluloid
  module Internals
    class Stack
      class Summary < Stack
        def initialize(threads)
          super(threads)
          snapshot
        end
      end
    end
  end
end