Class: BuildController
Instance Method Summary
collapse
#initialize, #load_project
Instance Method Details
#status ⇒ Object
3
4
|
# File 'app/controllers/build_controller.rb', line 3
def status
end
|
#stderr ⇒ Object
11
12
13
14
|
# File 'app/controllers/build_controller.rb', line 11
def stderr
load_build
send_log(@build.stderr)
end
|
#stdout ⇒ Object
6
7
8
9
|
# File 'app/controllers/build_controller.rb', line 6
def stdout
load_build
send_log(@build.stdout)
end
|
#tests ⇒ Object
16
17
|
# File 'app/controllers/build_controller.rb', line 16
def tests
end
|