Class: Application

Inherits:
Object show all
Defined in:
lib/ceedling/application.rb

Overview

As Rake is removed, more and more functionality and code entrypoints will migrate here

Instance Method Summary collapse

Instance Method Details

#build_succeeded?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/ceedling/application.rb', line 22

def build_succeeded?
  return (!@failures) && @system_wrapper.ruby_success?
end

#register_build_failureObject



18
19
20
# File 'lib/ceedling/application.rb', line 18

def register_build_failure
  @failures = true
end

#setupObject



14
15
16
# File 'lib/ceedling/application.rb', line 14

def setup
  @failures = false
end