Sha256: 7ea2fac35d6bf37c516c7194a09f8b4ba826734c9ea23559aa331b8075b03b9e
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
# Copyright 2006-2011 Michel Casabianca <michel.casabianca@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'rubygems' class TestBuildListener attr_reader :formatter attr_reader :started attr_reader :finished attr_reader :targets attr_reader :tasks attr_reader :success attr_reader :errors attr_accessor :throw_error attr_accessor :prompt def initialize() reset end def build_started(build, dry=false) @started = true end def build_finished() @finished = true end def target(target) @targets << target end def task(task) @tasks << task end def error(exception) if throw_error raise exception else @errors << exception end end def recover @success = true end def reset @formatter = TestBuildFormatter.new(self) @started = false @finished = false @targets = [] @tasks = [] @success = false @errors = [] @throw_error = false @prompt = '' end def output() return @formatter.output end def clear() @formatter.clear() end def error? return @errors.length > 0 end end class TestBuildFormatter attr_reader :verbose attr_reader :output def initialize(listener) @listener = listener @verbose = false @output = '' end def print(text) @output << text end def puts(text) @output << text + "\n" end def clear() @output = '' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bee-0.11.1 | egg/package/test_build_listener.rb |
bee-0.11.0 | egg/package/test_build_listener.rb |