logstash-output-jdbc 0.2.0.rc2 → 0.2.0.rc3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e5d20a2e81aa5a05d7c63f205a9cf17ec4c694e8
4
- data.tar.gz: 4fae148aa988fad70a15e62893e8a2a614ca13a3
3
+ metadata.gz: a54974a84429e4dd7ae8f0b0ab08a2eca7ea0217
4
+ data.tar.gz: fde4c6acdf269342be353facc5caa8402656359c
5
5
  SHA512:
6
- metadata.gz: 0095e183425171cf0215fd8dd839ae28281a04664a8e70ae6330fbc77433f1641a3436e82a7cc8ef55d3d84cbb70244287b6f4e78f1b46d855052bda3fa38d6c
7
- data.tar.gz: 546451f10d576dbcf585d9b27ba200a296039c2b4ea1f93bfe8431e96408cbd80504545d848d7227bb7588c3453a414022ee75b6b9a42ca1def85c847204be6f
6
+ metadata.gz: e1e2792041f4caab27a0774cb8d63f3513bfe5add1debaeb1d08b634c806b21ff1f344d7c4c0905019e97fa2e5ce3ca92a0c0c590a4066bdc2e94aec1bc59a19
7
+ data.tar.gz: afc7f0e8a9027e098cd887ae96c4dd0625a8aac95d1ca4ce3bf49ec4aa2d0a16f9cde9feec3b1717ed09e317d0937f4a2ed3c3b6ac58bce6d9bd048af878b130
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-jdbc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.rc2
4
+ version: 0.2.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - the_angry_angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-15 00:00:00.000000000 Z
11
+ date: 2015-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core
@@ -80,17 +80,13 @@ executables: []
80
80
  extensions: []
81
81
  extra_rdoc_files: []
82
82
  files:
83
- - .gitignore
84
- - Gemfile
85
- - LICENSE.txt
86
- - README.md
87
- - Rakefile
88
- - lib/logstash-output-jdbc_jars.rb
89
83
  - lib/logstash/outputs/jdbc.rb
90
- - logstash-output-jdbc.gemspec
84
+ - lib/logstash-output-jdbc_jars.rb
91
85
  - vendor/jar-dependencies/runtime-jars/HikariCP-2.4.2.jar
92
86
  - vendor/jar-dependencies/runtime-jars/slf4j-api-1.7.13.jar
93
87
  - vendor/jar-dependencies/runtime-jars/slf4j-nop-1.7.13.jar
88
+ - LICENSE.txt
89
+ - README.md
94
90
  homepage: https://github.com/theangryangel/logstash-output-jdbc
95
91
  licenses:
96
92
  - Apache License (2.0)
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- *.gem
2
- Gemfile.lock
3
- Gemfile.bak
4
- .bundle
data/Gemfile DELETED
@@ -1,2 +0,0 @@
1
- source 'https://rubygems.org'
2
- gemspec
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "logstash/devutils/rake"
@@ -1,26 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = 'logstash-output-jdbc'
3
- s.version = "0.2.0.rc2"
4
- s.licenses = [ "Apache License (2.0)" ]
5
- s.summary = "This plugin allows you to output to SQL, via JDBC"
6
- s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
7
- s.authors = ["the_angry_angel"]
8
- s.email = "karl+github@theangryangel.co.uk"
9
- s.homepage = "https://github.com/theangryangel/logstash-output-jdbc"
10
- s.require_paths = [ "lib" ]
11
-
12
- # Files
13
- s.files = `git ls-files`.split($\)
14
- # Tests
15
- s.test_files = s.files.grep(%r{^(test|spec|features)/})
16
-
17
- # Special flag to let us know this is actually a logstash plugin
18
- s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
19
-
20
- # Gem dependencies
21
- s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0"
22
- s.add_runtime_dependency 'stud'
23
- s.add_runtime_dependency "logstash-codec-plain"
24
-
25
- s.add_development_dependency "logstash-devutils"
26
- end