logstash-core-plugin-api 2.1.9-java → 2.1.10-java
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/logstash-core-plugin-api/version.rb +1 -2
- data/logstash-core-plugin-api.gemspec +29 -0
- metadata +5 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 89a81432ea0f5e5d162da3c94db6408377a68bdd
         | 
| 4 | 
            +
              data.tar.gz: f9c19aa827dc46bb7f3f889abc7d5fa983059d90
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: fa013d86a48f2a000b42ca01109d189538fa3f78ec935360394bd87caccf7b38357435084fb6124a2716df83c46d0dffc5d48344ed7180f466940a995dc2cebf
         | 
| 7 | 
            +
              data.tar.gz: 838f9d8a35600d554a1ef0a00ef72868cc8f30556a45ffa77be8673be826fc4db24b741de943ee30173d157dd26b7c91ce29995d617e98621ad34f7e099bae2f
         | 
| @@ -0,0 +1,29 @@ | |
| 1 | 
            +
            # -*- encoding: utf-8 -*-
         | 
| 2 | 
            +
            lib = File.expand_path('../lib', __FILE__)
         | 
| 3 | 
            +
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         | 
| 4 | 
            +
            require "logstash-core-plugin-api/version"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            Gem::Specification.new do |gem|
         | 
| 7 | 
            +
              gem.authors       = ["Elastic"]
         | 
| 8 | 
            +
              gem.email         = ["info@elastic.co"]
         | 
| 9 | 
            +
              gem.description   = %q{Logstash plugin API}
         | 
| 10 | 
            +
              gem.summary       = %q{Define the plugin API that the plugin need to follow.}
         | 
| 11 | 
            +
              gem.homepage      = "http://www.elastic.co/guide/en/logstash/current/index.html"
         | 
| 12 | 
            +
              gem.license       = "Apache License (2.0)"
         | 
| 13 | 
            +
             | 
| 14 | 
            +
              gem.files         = Dir.glob(["logstash-core-plugin-api.gemspec", "lib/**/*.rb", "spec/**/*.rb"])
         | 
| 15 | 
            +
              gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
         | 
| 16 | 
            +
              gem.name          = "logstash-core-plugin-api"
         | 
| 17 | 
            +
              gem.require_paths = ["lib"]
         | 
| 18 | 
            +
              gem.version       = LOGSTASH_CORE_PLUGIN_API
         | 
| 19 | 
            +
             | 
| 20 | 
            +
              gem.add_runtime_dependency "logstash-core", "5.0.0-alpha5"
         | 
| 21 | 
            +
             | 
| 22 | 
            +
              # Make sure we dont build this gem from a non jruby
         | 
| 23 | 
            +
              # environment.
         | 
| 24 | 
            +
              if RUBY_PLATFORM == "java"
         | 
| 25 | 
            +
                gem.platform = "java"
         | 
| 26 | 
            +
              else
         | 
| 27 | 
            +
                raise "The logstash-core-api need to be build on jruby"
         | 
| 28 | 
            +
              end
         | 
| 29 | 
            +
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,21 +1,21 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: logstash-core-plugin-api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2.1. | 
| 4 | 
            +
              version: 2.1.10
         | 
| 5 5 | 
             
            platform: java
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Elastic
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2016- | 
| 11 | 
            +
            date: 2016-07-27 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 15 15 | 
             
                requirements:
         | 
| 16 16 | 
             
                - - '='
         | 
| 17 17 | 
             
                  - !ruby/object:Gem::Version
         | 
| 18 | 
            -
                    version: 5.0.0. | 
| 18 | 
            +
                    version: 5.0.0.pre.alpha5
         | 
| 19 19 | 
             
              name: logstash-core
         | 
| 20 20 | 
             
              prerelease: false
         | 
| 21 21 | 
             
              type: :runtime
         | 
| @@ -23,7 +23,7 @@ dependencies: | |
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - '='
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version: 5.0.0. | 
| 26 | 
            +
                    version: 5.0.0.pre.alpha5
         | 
| 27 27 | 
             
            description: Logstash plugin API
         | 
| 28 28 | 
             
            email:
         | 
| 29 29 | 
             
            - info@elastic.co
         | 
| @@ -32,6 +32,7 @@ extensions: [] | |
| 32 32 | 
             
            extra_rdoc_files: []
         | 
| 33 33 | 
             
            files:
         | 
| 34 34 | 
             
            - lib/logstash-core-plugin-api/version.rb
         | 
| 35 | 
            +
            - logstash-core-plugin-api.gemspec
         | 
| 35 36 | 
             
            homepage: http://www.elastic.co/guide/en/logstash/current/index.html
         | 
| 36 37 | 
             
            licenses:
         | 
| 37 38 | 
             
            - Apache License (2.0)
         |