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.
Add this line to your application's Gemfile:
gem 'tty-screen'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tty-screen
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]
- Fork it ( https://github.com/[my-github-username]/tty-screen/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Copyright (c) 2014 Piotr Murach. See LICENSE for further details.