autowow 0.9.6 → 0.10.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.
- checksums.yaml +4 -4
 - data/README.md +3 -1
 - data/lib/autowow/commands/gem.rb +3 -1
 - data/lib/autowow/features/gem.rb +1 -0
 - data/lib/autowow/version.rb +1 -1
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 4fb143a2950ff3c8ec4af7d7c8dd4aa7cc46d579
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: dcdd28615d51b584457eaebe98fb2ca21231e631
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 266f28df2ad54829409eb2a7e5ab002271ce23f5ef989288db5a9d81f1f10d00504255600688f50cce219e9cd2363790912a7c4ad4fcbe94892f69015dc16eab
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 572c6e0045d968b3b99ccd6d297faaac7fcb9e3cdf17f48e01ccb253ce8f0816576bac1e5131ef4b753d87a57dfe4ae67c81870f4a63a035070a3d6e6a14b6a9
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -3,9 +3,11 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
            #### Set of commands to [auto]mate [w]ay [o]f [w]orking
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
            <!--- Version informartion -->
         
     | 
| 
       6 
     | 
    
         
            -
            *You are viewing the README of version [v0.10. 
     | 
| 
      
 6 
     | 
    
         
            +
            *You are viewing the README of version [v0.10.1](https://github.com/thisismydesign/autowow/releases/tag/v0.10.1). You can find other releases [here](https://github.com/thisismydesign/autowow/releases).*
         
     | 
| 
       7 
7 
     | 
    
         
             
            <!--- Version informartion end -->
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
       9 
11 
     | 
    
         
             
            | Branch | Status |
         
     | 
| 
       10 
12 
     | 
    
         
             
            | ------ | ------ |
         
     | 
| 
       11 
13 
     | 
    
         
             
            | Release | [](https://travis-ci.org/thisismydesign/autowow)   [](https://coveralls.io/github/thisismydesign/autowow?branch=release)   [](https://badge.fury.io/rb/autowow)   [](https://rubygems.org/gems/autowow) |
         
     | 
    
        data/lib/autowow/commands/gem.rb
    CHANGED
    
    | 
         @@ -14,7 +14,9 @@ module Autowow 
     | 
|
| 
       14 
14 
     | 
    
         
             
                  end
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         
             
                  def bump(version = nil)
         
     | 
| 
       17 
     | 
    
         
            -
                     
     | 
| 
      
 17 
     | 
    
         
            +
                    command = ["gem", "bump", "--no-commit"]
         
     | 
| 
      
 18 
     | 
    
         
            +
                    return command unless version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    command + ["--version", version]
         
     | 
| 
       18 
20 
     | 
    
         
             
                  end
         
     | 
| 
       19 
21 
     | 
    
         | 
| 
       20 
22 
     | 
    
         
             
                  def rubocop_autocorrect(files)
         
     | 
    
        data/lib/autowow/features/gem.rb
    CHANGED
    
    
    
        data/lib/autowow/version.rb
    CHANGED