protoc 2.6.1.2-universal-mingw32 → 2.6.1.3-universal-mingw32
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/bin/protoc +9 -2
- data/bin/protoc-2.6.1-aix-powerpc +0 -0
- data/bin/{protoc-2.6.1-linux-x86_32.exe → protoc-2.6.1-linux-x86_32} +0 -0
- data/bin/{protoc-2.6.1-linux-x86_64.exe → protoc-2.6.1-linux-x86_64} +0 -0
- data/bin/{protoc-2.6.1-osx-x86_32.exe → protoc-2.6.1-osx-x86_32} +0 -0
- data/bin/{protoc-2.6.1-osx-x86_64.exe → protoc-2.6.1-osx-x86_64} +0 -0
- data/lib/protoc/version.rb +1 -1
- metadata +12 -10
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 95a55fe04df3abca53e398cb4d3949b69556471e
         | 
| 4 | 
            +
              data.tar.gz: 828eda33f4ad8af868c8880317e4864a80525d10
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: b0f5be2adb348613af9cf559f9a90648569a912782ddfb78c3a426c69b2380a5aef6c1f3c1d760b14997ca2810a20d9ee9338b5f6fefaeeb6b5c6890f1caf90b
         | 
| 7 | 
            +
              data.tar.gz: 87bc6eb5c9497a1a9266177d83b140b2beeafd7de9bbc1c35d327dd8a054bcbe2dce78a4d04cddbe43ad18ff7e70314d83bf5842f9f63b9c71f69ae0df657cb4
         | 
    
        data/bin/protoc
    CHANGED
    
    | @@ -3,7 +3,7 @@ | |
| 3 3 | 
             
            require 'platform'
         | 
| 4 4 | 
             
            require 'protoc/version'
         | 
| 5 5 |  | 
| 6 | 
            -
            PLATFORM_TO_PROTOC_ARCH = {:x86 => :x86_32, :x86_64 => :x86_64}
         | 
| 6 | 
            +
            PLATFORM_TO_PROTOC_ARCH = {:x86 => :x86_32, :x86_64 => :x86_64, :powerpc => :powerpc}
         | 
| 7 7 |  | 
| 8 8 | 
             
            # Work around for lack of x86_64 support in Platform 0.4.0, which is the
         | 
| 9 9 | 
             
            # latest in rubygems.org. https://github.com/mmower/platform/issues/3
         | 
| @@ -16,7 +16,12 @@ def platform_arch | |
| 16 16 | 
             
            end
         | 
| 17 17 |  | 
| 18 18 | 
             
            def exec_protoc_for_os(os)
         | 
| 19 | 
            -
               | 
| 19 | 
            +
              case Platform::OS
         | 
| 20 | 
            +
                when :win32
         | 
| 21 | 
            +
                  exec("#{File.dirname(__FILE__)}/protoc-#{Protoc::PROTOBUF_VERSION}-#{os}-#{PLATFORM_TO_PROTOC_ARCH[platform_arch]}.exe", *ARGV)
         | 
| 22 | 
            +
                else
         | 
| 23 | 
            +
                  exec("#{File.dirname(__FILE__)}/protoc-#{Protoc::PROTOBUF_VERSION}-#{os}-#{PLATFORM_TO_PROTOC_ARCH[platform_arch]}", *ARGV)      
         | 
| 24 | 
            +
              end
         | 
| 20 25 | 
             
            end
         | 
| 21 26 |  | 
| 22 27 | 
             
            case Platform::OS
         | 
| @@ -28,6 +33,8 @@ case Platform::OS | |
| 28 33 | 
             
                    exec_protoc_for_os('osx')
         | 
| 29 34 | 
             
                  when :linux
         | 
| 30 35 | 
             
                    exec_protoc_for_os('linux')
         | 
| 36 | 
            +
                  when :aix
         | 
| 37 | 
            +
                    exec_protoc_for_os('aix')
         | 
| 31 38 | 
             
                  else
         | 
| 32 39 | 
             
                    raise "I don't have a binary for #{Platform::IMPL}"
         | 
| 33 40 | 
             
                end
         | 
| Binary file | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
    
        data/lib/protoc/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: protoc
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2.6.1. | 
| 4 | 
            +
              version: 2.6.1.3
         | 
| 5 5 | 
             
            platform: universal-mingw32
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Ben Jansen
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2018-11-13 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: bundler
         | 
| @@ -76,20 +76,22 @@ description: | | |
| 76 76 | 
             
            email: 
         | 
| 77 77 | 
             
            executables:
         | 
| 78 78 | 
             
            - protoc
         | 
| 79 | 
            -
            - protoc-2.6.1- | 
| 80 | 
            -
            - protoc-2.6.1-linux- | 
| 81 | 
            -
            - protoc-2.6.1- | 
| 82 | 
            -
            - protoc-2.6.1-osx- | 
| 79 | 
            +
            - protoc-2.6.1-aix-powerpc
         | 
| 80 | 
            +
            - protoc-2.6.1-linux-x86_32
         | 
| 81 | 
            +
            - protoc-2.6.1-linux-x86_64
         | 
| 82 | 
            +
            - protoc-2.6.1-osx-x86_32
         | 
| 83 | 
            +
            - protoc-2.6.1-osx-x86_64
         | 
| 83 84 | 
             
            - protoc-2.6.1-windows-x86_32.exe
         | 
| 84 85 | 
             
            - protoc-2.6.1-windows-x86_64.exe
         | 
| 85 86 | 
             
            extensions: []
         | 
| 86 87 | 
             
            extra_rdoc_files: []
         | 
| 87 88 | 
             
            files:
         | 
| 88 89 | 
             
            - bin/protoc
         | 
| 89 | 
            -
            - bin/protoc-2.6.1- | 
| 90 | 
            -
            - bin/protoc-2.6.1-linux- | 
| 91 | 
            -
            - bin/protoc-2.6.1- | 
| 92 | 
            -
            - bin/protoc-2.6.1-osx- | 
| 90 | 
            +
            - bin/protoc-2.6.1-aix-powerpc
         | 
| 91 | 
            +
            - bin/protoc-2.6.1-linux-x86_32
         | 
| 92 | 
            +
            - bin/protoc-2.6.1-linux-x86_64
         | 
| 93 | 
            +
            - bin/protoc-2.6.1-osx-x86_32
         | 
| 94 | 
            +
            - bin/protoc-2.6.1-osx-x86_64
         | 
| 93 95 | 
             
            - bin/protoc-2.6.1-windows-x86_32.exe
         | 
| 94 96 | 
             
            - bin/protoc-2.6.1-windows-x86_64.exe
         | 
| 95 97 | 
             
            - lib/protoc/protocol_buffers_license.txt
         |