gongo/gnawrnip

View on GitHub
lib/gnawrnip/photographer.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'gnawrnip/screenshot'

module Gnawrnip
  class Photographer
    def take_shot
      frames << Screenshot.take
    end

    def reset!
      frames.clear
    end

    def frames
      @frames ||= []
    end
  end
end