gito 0.4.11 → 0.4.12
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/lib/gito.rb +1 -1
- data/lib/gito/project.rb +5 -1
- data/lib/gito/version.rb +1 -1
- metadata +3 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 55cdd09aa85faa95b08298e5d0f50ffd9e429b2d
         | 
| 4 | 
            +
              data.tar.gz: 2987b85e6cfe4f323c1092f5d00b85c9fa54fbf7
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 022cd0ec94dedc1003ad9e0e8821fe884172f2661d77b295be4a7db02e9b05d5ac047b8f6e7131130747647c85d4b2e388f6f4be84d95a83eb64f3f2c4d38137
         | 
| 7 | 
            +
              data.tar.gz: ed49f4328a8c73245b5ce8ad2e6ac3d51af3a1c83a75f771a4646b63deb790507266b38a09bbb773fbaf7c30d7b887787d28d09212da338aab616d3e1d489e12
         | 
    
        data/lib/gito.rb
    CHANGED
    
    
    
        data/lib/gito/project.rb
    CHANGED
    
    | @@ -74,11 +74,15 @@ class Project | |
| 74 74 | 
             
                starts_with_git = @base_url.split(//).first(4).join.eql? 'git@'
         | 
| 75 75 | 
             
                ends_with_git = @base_url.split(//).last(4).join.eql? '.git'
         | 
| 76 76 |  | 
| 77 | 
            +
                return "git@github.com:#{@base_url}.git" if @base_url.split('/').length == 2
         | 
| 78 | 
            +
             | 
| 77 79 | 
             
                # ends with git but doesnt start with git
         | 
| 78 80 | 
             
                return @base_url if ends_with_git && !starts_with_git
         | 
| 79 81 |  | 
| 82 | 
            +
                user_repo_pair = @base_url.split('https://github.com/').last
         | 
| 83 | 
            +
             | 
| 80 84 | 
             
                # ends with git but doesnt start with git
         | 
| 81 | 
            -
                return " | 
| 85 | 
            +
                return "git@github.com:#{user_repo_pair}.git" if !ends_with_git && !starts_with_git
         | 
| 82 86 |  | 
| 83 87 | 
             
                @base_url
         | 
| 84 88 | 
             
              end
         | 
    
        data/lib/gito/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: gito
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.4. | 
| 4 | 
            +
              version: 0.4.12
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - cesar ferreira
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2017- | 
| 11 | 
            +
            date: 2017-07-26 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rake
         | 
| @@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 128 128 | 
             
                  version: '0'
         | 
| 129 129 | 
             
            requirements: []
         | 
| 130 130 | 
             
            rubyforge_project: 
         | 
| 131 | 
            -
            rubygems_version: 2.6. | 
| 131 | 
            +
            rubygems_version: 2.6.11
         | 
| 132 132 | 
             
            signing_key: 
         | 
| 133 133 | 
             
            specification_version: 4
         | 
| 134 134 | 
             
            summary: git helper tool to clone/open/auto-install/edit a git project with a one-liner
         |