beeta 0.0.4 → 0.0.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/Rakefile +2 -4
- metadata +2 -2
    
        data/Rakefile
    CHANGED
    
    | @@ -138,11 +138,9 @@ def increment_ver | |
| 138 138 | 
             
              versions = specs.map {|spec,| spec.version}.sort
         | 
| 139 139 | 
             
              new_version = versions.last.to_s.strip
         | 
| 140 140 |  | 
| 141 | 
            -
              new_version = if new_version.nil?
         | 
| 142 | 
            -
            			"0.0.1"
         | 
| 141 | 
            +
              new_version = if new_version.nil? "0.0.1"
         | 
| 143 142 | 
             
            		else
         | 
| 144 | 
            -
             | 
| 145 | 
            -
                              digits[-1] += 1  
         | 
| 143 | 
            +
            		   new_version
         | 
| 146 144 | 
             
            		end
         | 
| 147 145 |  | 
| 148 146 | 
             
              puts "New Version is going to be #{new_version}"
         |