Module: Redix

Defined in:
lib/redix.rb,
lib/redix/logic.rb,
lib/redix/redisd.rb

Defined Under Namespace

Modules: RedisD Classes: DataModel, Logic, SimpleModel

Constant Summary collapse

App =
Qt::Application.new(ARGV)

Class Method Summary collapse

Class Method Details

.boot!Object



14
15
16
17
18
19
20
21
# File 'lib/redix.rb', line 14

def self.boot!
  u = Ui_MainWindow.new
  w = Qt::MainWindow.new
  u.setupUi(w)
  Logic.for(u)
  w.show
  App.exec
end