├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── hidapi.gemspec ├── lib ├── hidapi.rb └── hidapi │ ├── device.rb │ ├── engine.rb │ ├── errors.rb │ ├── language.rb │ ├── numeric_extensions.rb │ ├── setup_task_helper.rb │ └── version.rb └── tmp └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/bin/setup -------------------------------------------------------------------------------- /hidapi.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/hidapi.gemspec -------------------------------------------------------------------------------- /lib/hidapi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi.rb -------------------------------------------------------------------------------- /lib/hidapi/device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/device.rb -------------------------------------------------------------------------------- /lib/hidapi/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/engine.rb -------------------------------------------------------------------------------- /lib/hidapi/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/errors.rb -------------------------------------------------------------------------------- /lib/hidapi/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/language.rb -------------------------------------------------------------------------------- /lib/hidapi/numeric_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/numeric_extensions.rb -------------------------------------------------------------------------------- /lib/hidapi/setup_task_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barkerest/hidapi/HEAD/lib/hidapi/setup_task_helper.rb -------------------------------------------------------------------------------- /lib/hidapi/version.rb: -------------------------------------------------------------------------------- 1 | module HIDAPI 2 | VERSION = '0.1.9' 3 | end 4 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------