├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── example ├── control_gallery.rb └── histogram.rb ├── lib ├── ext.rb ├── libui.rb └── version.rb └── screenshots ├── controlgallery.png └── histogram.png /.gitignore: -------------------------------------------------------------------------------- 1 | libui.dylib 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | gem "pry" 2 | gemspec 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/README.md -------------------------------------------------------------------------------- /example/control_gallery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/example/control_gallery.rb -------------------------------------------------------------------------------- /example/histogram.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/example/histogram.rb -------------------------------------------------------------------------------- /lib/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/lib/ext.rb -------------------------------------------------------------------------------- /lib/libui.rb: -------------------------------------------------------------------------------- 1 | module LibUI 2 | end 3 | require_relative "ext" 4 | -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- 1 | module LibUI 2 | VERSION = "1.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /screenshots/controlgallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/screenshots/controlgallery.png -------------------------------------------------------------------------------- /screenshots/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamescook/libui-ruby/HEAD/screenshots/histogram.png --------------------------------------------------------------------------------