Sha256: 142b64cf6f31ce7b184c9e53ec4034fb1b6773dbdab1947d1a011c053f0fa53f

Contents?: true

Size: 198 Bytes

Versions: 10

Compression:

Stored size: 198 Bytes

Contents

module Textpow
  class RecordingProcessor
    attr_accessor :stack

    def initialize
      @stack = []
    end

    def method_missing(name, *args)
      @stack << [name, *args]
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
textpow-1.4.0 lib/textpow/recording_processor.rb
textpow-1.3.1 lib/textpow/recording_processor.rb
textpow-1.3.0 lib/textpow/recording_processor.rb
textpow1x-1.2.5 lib/textpow/recording_processor.rb
textpow1x-1.2.4 lib/textpow/recording_processor.rb
textpow1x-1.2.3 lib/textpow/recording_processor.rb
textpow1x-1.2.2 lib/textpow/recording_processor.rb
textpow1x-1.2.1 lib/textpow/recording_processor.rb
textpow1x-1.2.0 lib/textpow/recording_processor.rb
textpow1x-1.1.0 lib/textpow/recording_processor.rb