# File lib/blimpy/box.rb, line 217
    def bootstrap_livery
      if @livery.kind_of? Symbol
        raise Blimpy::InvalidLiveryException, 'Symbol liveries are unsupported!'
      end

      @livery.setup_on(self)
      @livery.preflight(self)
      @livery.flight(self)
      @livery.postflight(self)
    end