/rukeyboard

Cross-platform solution for simulating keyboard events.

Primary LanguageRuby

RuKeyboard

Cross-platform library to simulate keyboard events.

Usage

keyboard = RuKeboard.new

# press 'a' key
keyboard.press_key 'a'

# release 'a' key
keyboard.release_key 'a'

# type string
keyboard.type_string 'hello, world'