Show
Ignore:
Timestamp:
09/26/2007 17:39:26 (14 months ago)
Author:
zimbatm
Message:

Command-line fixes. Ticket #93 solved.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/camping/reloader.rb

    r225 r228  
    6464            end 
    6565        rescue Exception => e 
    66             puts "!! trouble loading #{title}: [#{e.class}] #{e.message}" 
     66            puts "!! trouble loading #{title.inspect}: [#{e.class}] #{e.message}" 
    6767            puts e.backtrace.join("\n") 
    6868            find_app title 
     
    7474        find_app title 
    7575        unless @klass and @klass.const_defined? :C 
    76             puts "!! trouble loading #{title}: not a Camping app, no #{title.capitalize} module found" 
     76            puts "!! trouble loading #{title.inspect}: not a Camping app, no #{title.capitalize} module found" 
    7777            remove_app 
    7878            return 
     
    8181        Reloader.conditional_connect 
    8282        @klass.create if @klass.respond_to? :create 
    83         puts "!! loaded #{title}" 
     83        puts "** #{title.inspect} app loaded" 
    8484        @klass 
    8585    end