fluent-plugin-sidekiq 0.0.1 → 0.0.2

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: bbe4acdee18b4938bf3096dd7bb8171729a1578f
4
- data.tar.gz: 8a2ea2fc6ecfec8880af3b46f88b1b5d2a79b7db
3
+ metadata.gz: 090106e44eec98ca82cb837015022e1564b5134a
4
+ data.tar.gz: c19cd2dd275dffe8eed29cf2ea5905c246c5b681
5
5
  SHA512:
6
- metadata.gz: 6814a6efbab0b23d07f4389266bb6b59dff106d71952b6ab495158b6a79a114696f8524a53eccbf0ee44859dd13d97ee3c474ae598672ee88bfc5494fa657777
7
- data.tar.gz: 01186a7ddfd37d58ac8e2d120eb76502903143b686abe5349cf6aa39a398fb7bb882995a27bd8d05495b59c91315636e8a5a39758029bca8518d5a87dfe982ee
6
+ metadata.gz: b8457adbf359d8ceeff6253a83ae4824d9f61289827818155c95b6c77e410497441f9d91ed83689e21aeb4ac365cd9089b23bd6e628a9e4ed2c638c818ba97ef
7
+ data.tar.gz: c231ad701386ad4820202de55fba8e44ea69d574fc83a2cc86911efc0fa4b0c9dc7e2e5b4505707c4c37dd7151122c8948f1d55b0f32224dc4dcece1f1352c19
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.2
@@ -1,11 +1,10 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'fluent/plugin/sidekiq/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
6
  spec.name = "fluent-plugin-sidekiq"
8
- spec.version = Fluent::Plugin::Sidekiq::VERSION
7
+ spec.version = File.read("VERSION").strip
9
8
  spec.authors = ["Alex Scarborough"]
10
9
  spec.email = ["alex@gocarrot.com"]
11
10
  spec.description = %q{Sidekiq plugin for Fluentd}
@@ -1,7 +1,7 @@
1
- require "fluent/plugin/sidekiq/version"
2
1
  require "redis"
3
2
 
4
3
  class Fluent::SidekiqOutput < Fluent::BufferedOutput
4
+ VERSION = "0.0.2"
5
5
  Fluent::Plugin.register_output("sidekiq", self)
6
6
 
7
7
  config_param :redis_url, :string, :default => 'redis://localhost:6379'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Scarborough
@@ -80,9 +80,9 @@ files:
80
80
  - LICENSE.txt
81
81
  - README.md
82
82
  - Rakefile
83
+ - VERSION
83
84
  - fluent-plugin-sidekiq.gemspec
84
85
  - lib/fluent/plugin/out_sidekiq.rb
85
- - lib/fluent/plugin/sidekiq/version.rb
86
86
  homepage: https://github.com/GoCarrot/fluent-plugin-sidekiq
87
87
  licenses:
88
88
  - MIT
@@ -1,7 +0,0 @@
1
- module Fluent
2
- module Plugin
3
- module Sidekiq
4
- VERSION = "0.0.1"
5
- end
6
- end
7
- end