A key code library for mac. It supports any keyboard layouts such as QWERTY, Dvorak etc.
It is based on http://stackoverflow.com/a/1971027 by Michael
Add this line to your application's Gemfile:
gem 'mac-key_code'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mac-key_code
require 'mac-key_code'
key_code = Mac::KeyCode.new(38)
key_code.to_s # => 'j'
- Fork it ( http://github.com/youpy/mac-key_code/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 new Pull Request