multi_git 0.0.1.alpha2 → 0.0.1.beta1
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 +7 -0
- data/lib/multi_git/config/default_schema.rb +26 -0
- data/lib/multi_git/config/schema.rb +141 -0
- data/lib/multi_git/config.rb +170 -0
- data/lib/multi_git/error.rb +4 -0
- data/lib/multi_git/git_backend/cmd.rb +9 -4
- data/lib/multi_git/git_backend/commit.rb +1 -1
- data/lib/multi_git/git_backend/config.rb +47 -0
- data/lib/multi_git/git_backend/ref.rb +9 -8
- data/lib/multi_git/git_backend/remote.rb +47 -0
- data/lib/multi_git/git_backend/repository.rb +16 -1
- data/lib/multi_git/jgit_backend/config.rb +52 -0
- data/lib/multi_git/jgit_backend/remote.rb +74 -0
- data/lib/multi_git/jgit_backend/repository.rb +15 -0
- data/lib/multi_git/ref.rb +82 -38
- data/lib/multi_git/refspec.rb +118 -0
- data/lib/multi_git/remote.rb +66 -0
- data/lib/multi_git/repository.rb +17 -0
- data/lib/multi_git/rugged_backend/config.rb +43 -0
- data/lib/multi_git/rugged_backend/remote.rb +66 -0
- data/lib/multi_git/rugged_backend/repository.rb +25 -0
- data/lib/multi_git/tree.rb +28 -9
- data/lib/multi_git/tree_entry.rb +1 -1
- data/lib/multi_git/version.rb +1 -1
- data/lib/multi_git.rb +1 -0
- metadata +16 -13
    
        metadata
    CHANGED
    
    | @@ -1,20 +1,18 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: multi_git
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0.1. | 
| 5 | 
            -
              prerelease: 6
         | 
| 4 | 
            +
              version: 0.0.1.beta1
         | 
| 6 5 | 
             
            platform: ruby
         | 
| 7 6 | 
             
            authors:
         | 
| 8 7 | 
             
            - Hannes Georg
         | 
| 9 8 | 
             
            autorequire: 
         | 
| 10 9 | 
             
            bindir: bin
         | 
| 11 10 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2013- | 
| 11 | 
            +
            date: 2013-06-23 00:00:00.000000000 Z
         | 
| 13 12 | 
             
            dependencies:
         | 
| 14 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 14 | 
             
              name: rake
         | 
| 16 15 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 17 | 
            -
                none: false
         | 
| 18 16 | 
             
                requirements:
         | 
| 19 17 | 
             
                - - '>='
         | 
| 20 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -22,7 +20,6 @@ dependencies: | |
| 22 20 | 
             
              type: :development
         | 
| 23 21 | 
             
              prerelease: false
         | 
| 24 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 25 | 
            -
                none: false
         | 
| 26 23 | 
             
                requirements:
         | 
| 27 24 | 
             
                - - '>='
         | 
| 28 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -30,7 +27,6 @@ dependencies: | |
| 30 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 31 28 | 
             
              name: rspec
         | 
| 32 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 33 | 
            -
                none: false
         | 
| 34 30 | 
             
                requirements:
         | 
| 35 31 | 
             
                - - '>='
         | 
| 36 32 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -38,7 +34,6 @@ dependencies: | |
| 38 34 | 
             
              type: :development
         | 
| 39 35 | 
             
              prerelease: false
         | 
| 40 36 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 41 | 
            -
                none: false
         | 
| 42 37 | 
             
                requirements:
         | 
| 43 38 | 
             
                - - '>='
         | 
| 44 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -46,7 +41,6 @@ dependencies: | |
| 46 41 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 47 42 | 
             
              name: simplecov
         | 
| 48 43 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 49 | 
            -
                none: false
         | 
| 50 44 | 
             
                requirements:
         | 
| 51 45 | 
             
                - - '>='
         | 
| 52 46 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -54,7 +48,6 @@ dependencies: | |
| 54 48 | 
             
              type: :development
         | 
| 55 49 | 
             
              prerelease: false
         | 
| 56 50 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 57 | 
            -
                none: false
         | 
| 58 51 | 
             
                requirements:
         | 
| 59 52 | 
             
                - - '>='
         | 
| 60 53 | 
             
                  - !ruby/object:Gem::Version
         | 
| @@ -65,8 +58,11 @@ executables: [] | |
| 65 58 | 
             
            extensions: []
         | 
| 66 59 | 
             
            extra_rdoc_files: []
         | 
| 67 60 | 
             
            files:
         | 
| 61 | 
            +
            - lib/multi_git/refspec.rb
         | 
| 68 62 | 
             
            - lib/multi_git/tree.rb
         | 
| 69 63 | 
             
            - lib/multi_git/git_backend.rb
         | 
| 64 | 
            +
            - lib/multi_git/config/schema.rb
         | 
| 65 | 
            +
            - lib/multi_git/config/default_schema.rb
         | 
| 70 66 | 
             
            - lib/multi_git/utils.rb
         | 
| 71 67 | 
             
            - lib/multi_git/backend.rb
         | 
| 72 68 | 
             
            - lib/multi_git/symlink.rb
         | 
| @@ -76,10 +72,13 @@ files: | |
| 76 72 | 
             
            - lib/multi_git/git_backend/tree.rb
         | 
| 77 73 | 
             
            - lib/multi_git/git_backend/repository.rb
         | 
| 78 74 | 
             
            - lib/multi_git/git_backend/object.rb
         | 
| 75 | 
            +
            - lib/multi_git/git_backend/remote.rb
         | 
| 79 76 | 
             
            - lib/multi_git/git_backend/blob.rb
         | 
| 80 77 | 
             
            - lib/multi_git/git_backend/ref.rb
         | 
| 81 78 | 
             
            - lib/multi_git/git_backend/cmd.rb
         | 
| 79 | 
            +
            - lib/multi_git/git_backend/config.rb
         | 
| 82 80 | 
             
            - lib/multi_git/git_backend/commit.rb
         | 
| 81 | 
            +
            - lib/multi_git/remote.rb
         | 
| 83 82 | 
             
            - lib/multi_git/jgit_backend.rb
         | 
| 84 83 | 
             
            - lib/multi_git/blob.rb
         | 
| 85 84 | 
             
            - lib/multi_git/ref.rb
         | 
| @@ -88,17 +87,22 @@ files: | |
| 88 87 | 
             
            - lib/multi_git/jgit_backend/rewindeable_io.rb
         | 
| 89 88 | 
             
            - lib/multi_git/jgit_backend/repository.rb
         | 
| 90 89 | 
             
            - lib/multi_git/jgit_backend/object.rb
         | 
| 90 | 
            +
            - lib/multi_git/jgit_backend/remote.rb
         | 
| 91 91 | 
             
            - lib/multi_git/jgit_backend/blob.rb
         | 
| 92 92 | 
             
            - lib/multi_git/jgit_backend/ref.rb
         | 
| 93 | 
            +
            - lib/multi_git/jgit_backend/config.rb
         | 
| 93 94 | 
             
            - lib/multi_git/jgit_backend/commit.rb
         | 
| 94 95 | 
             
            - lib/multi_git/submodule.rb
         | 
| 95 96 | 
             
            - lib/multi_git/file.rb
         | 
| 96 97 | 
             
            - lib/multi_git/rugged_backend/tree.rb
         | 
| 97 98 | 
             
            - lib/multi_git/rugged_backend/repository.rb
         | 
| 98 99 | 
             
            - lib/multi_git/rugged_backend/object.rb
         | 
| 100 | 
            +
            - lib/multi_git/rugged_backend/remote.rb
         | 
| 99 101 | 
             
            - lib/multi_git/rugged_backend/blob.rb
         | 
| 100 102 | 
             
            - lib/multi_git/rugged_backend/ref.rb
         | 
| 103 | 
            +
            - lib/multi_git/rugged_backend/config.rb
         | 
| 101 104 | 
             
            - lib/multi_git/rugged_backend/commit.rb
         | 
| 105 | 
            +
            - lib/multi_git/config.rb
         | 
| 102 106 | 
             
            - lib/multi_git/handle.rb
         | 
| 103 107 | 
             
            - lib/multi_git/backend_set.rb
         | 
| 104 108 | 
             
            - lib/multi_git/version.rb
         | 
| @@ -112,18 +116,17 @@ files: | |
| 112 116 | 
             
            - lib/multi_git.rb
         | 
| 113 117 | 
             
            homepage: https://github.com/hannesg/multi_git
         | 
| 114 118 | 
             
            licenses: []
         | 
| 119 | 
            +
            metadata: {}
         | 
| 115 120 | 
             
            post_install_message: 
         | 
| 116 121 | 
             
            rdoc_options: []
         | 
| 117 122 | 
             
            require_paths:
         | 
| 118 123 | 
             
            - lib
         | 
| 119 124 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 120 | 
            -
              none: false
         | 
| 121 125 | 
             
              requirements:
         | 
| 122 126 | 
             
              - - '>='
         | 
| 123 127 | 
             
                - !ruby/object:Gem::Version
         | 
| 124 128 | 
             
                  version: '0'
         | 
| 125 129 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 126 | 
            -
              none: false
         | 
| 127 130 | 
             
              requirements:
         | 
| 128 131 | 
             
              - - '>'
         | 
| 129 132 | 
             
                - !ruby/object:Gem::Version
         | 
| @@ -131,9 +134,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 131 134 | 
             
            requirements:
         | 
| 132 135 | 
             
            - jar 'org.eclipse.jgit:org.eclipse.jgit'
         | 
| 133 136 | 
             
            rubyforge_project: 
         | 
| 134 | 
            -
            rubygems_version:  | 
| 137 | 
            +
            rubygems_version: 2.0.3
         | 
| 135 138 | 
             
            signing_key: 
         | 
| 136 | 
            -
            specification_version:  | 
| 139 | 
            +
            specification_version: 4
         | 
| 137 140 | 
             
            summary: Use all the git
         | 
| 138 141 | 
             
            test_files: []
         | 
| 139 142 | 
             
            has_rdoc: 
         |