Sha256: 364170755a281cbf0cf19bc96139bf6add5bc5c6fe1d544dfd897c708bdeb8a9

Contents?: true

Size: 274 Bytes

Versions: 13

Compression:

Stored size: 274 Bytes

Contents

# encoding: utf-8

module TTY
  class Prompt
     # A class responsible for storing shell interactions
     class History

       attr_reader :max_size

       def initialize(max_size=nil)
         @max_size = max_size
       end

    end # History
  end # Prompt
end # TTY

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
tty-prompt-0.11.0 lib/tty/prompt/history.rb
tty-prompt-0.10.1 lib/tty/prompt/history.rb
tty-prompt-0.10.0 lib/tty/prompt/history.rb
tty-prompt-0.9.0 lib/tty/prompt/history.rb
tty-prompt-0.8.0 lib/tty/prompt/history.rb
tty-prompt-0.7.1 lib/tty/prompt/history.rb
tty-prompt-0.7.0 lib/tty/prompt/history.rb
tty-prompt-0.6.0 lib/tty/prompt/history.rb
tty-prompt-0.5.0 lib/tty/prompt/history.rb
tty-prompt-0.4.0 lib/tty/prompt/history.rb
tty-prompt-0.3.0 lib/tty/prompt/history.rb
tty-prompt-0.2.0 lib/tty/prompt/history.rb
tty-prompt-0.1.0 lib/tty/prompt/history.rb