Sha256: d0be22ec2ad4fea22762ce0bd4ff0c93326ae9f6a7682c3cd11ba0db3d941e59

Contents?: true

Size: 211 Bytes

Versions: 2

Compression:

Stored size: 211 Bytes

Contents

require 'highline'

module Ttycaca
  class Terminal
    def initialize
      @term = HighLine.new
    end

    def width
      @term.output_cols
    end

    def height
      @term.output_rows
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ttycaca-1.0.1 lib/ttycaca/terminal.rb
ttycaca-1.0.0 lib/ttycaca/terminal.rb