Skip to content

Terminal screen detection - cross platform, major ruby interpreters

License

Notifications You must be signed in to change notification settings

formrausch/tty-screen

 
 

Repository files navigation

TTY::Screen

Gem Version Build Status Code Climate Coverage Status

Terminal screen size detection which works both on Linux, OS X and Windows/Cygwin platforms and supports MRI, JRuby and Rubinius interpreters.

TTY::Screen provides independent screen size detection component for TTY toolkit.

Installation

Add this line to your application's Gemfile:

gem 'tty-screen'

And then execute:

$ bundle

Or install it yourself as:

$ gem install tty-screen

1. Usage

TTY::Screen allows you to detect terminal screen size by calling size method which returns [height, width] tuple.

screen = TTY::Screen.new

screen.size     # => [51, 280]
screen.width    # => 280
screen.height   # => 51

You can also use above methods as class instance methods:

TTY::Screen.size  # => [51, 280]

Contributing

  1. Fork it ( https://github.com/[my-github-username]/tty-screen/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Copyright

Copyright (c) 2014 Piotr Murach. See LICENSE for further details.

About

Terminal screen detection - cross platform, major ruby interpreters

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%