Class: RunnerScreen

Inherits:
RunnerComponents show all
Defined in:
lib/desktop/screens/runner_screen.rb

Instance Attribute Summary

Attributes inherited from RunnerComponents

#contacts

Instance Method Summary collapse

Methods inherited from RunnerComponents

#config_tab, #editor_tab, #header, #initialize, #tests_tab

Methods inherited from BaseComponent

#initialize

Constructor Details

This class inherits a constructor from RunnerComponents

Instance Method Details

#launchObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/desktop/screens/runner_screen.rb', line 6

def launch
  window('Ruby Raider', 1200, 800) do
    margined true
    vertical_box do
      header
      tab do
        stretchy true
        tests_tab
        editor_tab
        config_tab
      end
    end
  end.show
end