scout 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +5 -0
- data/bin/scout +1 -1
- data/lib/scout.rb +1 -1
- data/lib/scout/plugin.rb +1 -1
- data/lib/scout/server.rb +2 -1
- metadata +1 -1
    
        data/CHANGELOG
    CHANGED
    
    
    
        data/bin/scout
    CHANGED
    
    
    
        data/lib/scout.rb
    CHANGED
    
    
    
        data/lib/scout/plugin.rb
    CHANGED
    
    
    
        data/lib/scout/server.rb
    CHANGED
    
    | @@ -142,12 +142,13 @@ module Scout | |
| 142 142 | 
             
                    debug "Removing plugin code..."
         | 
| 143 143 | 
             
                    begin
         | 
| 144 144 | 
             
                      Object.send(:remove_const, Plugin.last_defined.to_s.split("::").first)
         | 
| 145 | 
            +
                      Plugin.last_defined = nil
         | 
| 145 146 | 
             
                      info "Plugin Removed."
         | 
| 146 147 | 
             
                    rescue
         | 
| 147 148 | 
             
                      error "Unable to remove plugin."
         | 
| 148 149 | 
             
                    end
         | 
| 149 | 
            -
                    info "Plugin #{plugin[:name]} processing complete."
         | 
| 150 150 | 
             
                  end
         | 
| 151 | 
            +
                  info "Plugin #{plugin[:name]} processing complete."
         | 
| 151 152 | 
             
                end
         | 
| 152 153 |  | 
| 153 154 | 
             
                # 
         |