Class: BuildController

Inherits:
ApplicationController show all
Defined in:
app/controllers/build_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#initialize, #load_project

Constructor Details

This class inherits a constructor from ApplicationController

Instance Method Details

#statusObject



3
4
# File 'app/controllers/build_controller.rb', line 3

def status
end

#stderrObject



11
12
13
14
# File 'app/controllers/build_controller.rb', line 11

def stderr
  load_build
  send_log(@build.stderr)
end

#stdoutObject



6
7
8
9
# File 'app/controllers/build_controller.rb', line 6

def stdout
  load_build
  send_log(@build.stdout)
end

#testsObject



16
17
# File 'app/controllers/build_controller.rb', line 16

def tests
end