A Qt5 binding for Ruby language. Using clang/llvm JIT engine.
###Why new Qt5 binding for Ruby
Though it Qt 5.4 now, qtbinding still not support Qt5.
And so the origin kdebindings-qtruby and kdebindings-smokeqt projects.
###Features
Qt5+
Bidirector Singal/Slot between Ruby and Qt
Support uic/rcc.
Easy keep update to version by version
###Examples ######widget and object require 'Qt5' a = Qt5::QApplication.new(ARGV.count, ARGV) w = Qt5::QPushButton.new("it's a push button") w.show a.exec
#####core class require 'Qt5' s = Qt5::QString.new s.append("abcdefg") puts 'len=' + s.length.to_s
###Install git clone git@github.com:kitech/ruby-jit-qt.git cd ruby-jit-qt tar xvf /path/to/llvm-3.7.0.src.tar.xz tar xvf /path/to/cfe-3.7.0.src.tar.xz mv -v cfe-3.7.0.src llvm-3.7.0.src/tools/clang cmake . make
###Supported Modules QtCore QtGui QtWidgets QtNetwork ... more later
###TechStack clang/llvm/IR/JIT Ruby C API Qt5 C++11/C++14/C++1y