little-plugger 1.0.0 → 1.0.1
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/History.txt +5 -0
 - data/lib/little-plugger.rb +2 -2
 - metadata +2 -2
 
    
        data/History.txt
    CHANGED
    
    
    
        data/lib/little-plugger.rb
    CHANGED
    
    | 
         @@ -110,7 +110,7 @@ 
     | 
|
| 
       110 
110 
     | 
    
         
             
            #
         
     | 
| 
       111 
111 
     | 
    
         
             
            module LittlePlugger
         
     | 
| 
       112 
112 
     | 
    
         | 
| 
       113 
     | 
    
         
            -
              VERSION = '1.0. 
     | 
| 
      
 113 
     | 
    
         
            +
              VERSION = '1.0.1'  # :nodoc:
         
     | 
| 
       114 
114 
     | 
    
         | 
| 
       115 
115 
     | 
    
         
             
              # Returns the version string for the library.
         
     | 
| 
       116 
116 
     | 
    
         
             
              #
         
     | 
| 
         @@ -173,7 +173,7 @@ module LittlePlugger 
     | 
|
| 
       173 
173 
     | 
    
         
             
                  found = {}
         
     | 
| 
       174 
174 
     | 
    
         | 
| 
       175 
175 
     | 
    
         
             
                  Gem.find_files(File.join(plugin_path, '*.rb')).each do |path|
         
     | 
| 
       176 
     | 
    
         
            -
                    found[File.basename(path, ' 
     | 
| 
      
 176 
     | 
    
         
            +
                    found[File.basename(path, '.rb').to_sym] = path
         
     | 
| 
       177 
177 
     | 
    
         
             
                  end
         
     | 
| 
       178 
178 
     | 
    
         | 
| 
       179 
179 
     | 
    
         
             
                  :keep_on_truckin while found.map { |name, path|
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: little-plugger
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Tim Pease
         
     | 
| 
         @@ -9,7 +9,7 @@ autorequire: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            date: 2009- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2009-08-14 00:00:00 -06:00
         
     | 
| 
       13 
13 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       14 
14 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       15 
15 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     |