logstash-output-websocket_topics 2.1.7 → 2.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39061474a2ebfc3d65d9fadae87fc4ca9502894d
4
- data.tar.gz: bfc250526eb52de3c95a40483050cc5af2c952a5
3
+ metadata.gz: d9e4c5eb5d4cc91603996d0d702155c0bcf0bf0a
4
+ data.tar.gz: 09b24686fbb1ea1e85bae41044d048ae7147634d
5
5
  SHA512:
6
- metadata.gz: 9c6be04bc6fdc94e4f4bbd5b88d106a7664ae7b00e582a5088a75a8b0a25c0dc056e62828aa704b281e4ce5c4fe9e79de709820d01b924875a49dbb4d88d9423
7
- data.tar.gz: c7f8ac4942283b52c85a9b37602b122124669be60307a9179e67a144a67c19fe0060f5af26deee335591d4d5c32a2b72f808bd5c1ad229ec2c28b56685505072
6
+ metadata.gz: d1a05e95f40bee08aabcc266b36b81b8ea26c94bd71a96282c1a6c6948ed9e11abc09dc4db9edc786fa192b6777a624c3091cd7ec094a2f95ceabde155674a09
7
+ data.tar.gz: 4526946065677fdf74229eb9a55410c80642da5e952f22cc73d618057efb30e06a58990385411210fd6df8cbf1dd853fe1b6f0bb003f2d88da8a2df5e8a9a52d
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
  require "logstash/namespace"
3
- require "logstash/outputs/websocket_topics"
3
+ require "logstash/outputs/websocket"
4
4
 
5
5
  class LogStash::Outputs::WebSocket::Pubsub
6
6
  attr_accessor :logger
@@ -26,8 +26,8 @@ class LogStash::Outputs::WebSocket < LogStash::Outputs::Base
26
26
  public
27
27
  def register
28
28
  require "ftw"
29
- require "logstash/outputs/websocket_topics/app"
30
- require "logstash/outputs/websocket_topics/pubsub"
29
+ require "logstash/outputs/websocket/app"
30
+ require "logstash/outputs/websocket/pubsub"
31
31
  @channels = {}
32
32
  @server = Thread.new(@channels) do |channels|
33
33
  begin
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-websocket_topics'
4
- s.version = '2.1.7'
4
+ s.version = '2.1.8'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output runs a websocket server and publishes any messages to those conencted clients that have subscribed to the topic being published."
7
7
  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"
@@ -1,8 +1,8 @@
1
1
  # encoding: utf-8
2
2
  require "logstash/devutils/rspec/spec_helper"
3
- require "logstash/outputs/websocket_topics"
3
+ require "logstash/outputs/websocket"
4
4
 
5
- describe "output/websocket_topics" do
5
+ describe "output/websocket" do
6
6
 
7
7
  subject(:output) { LogStash::Outputs::WebSocket.new }
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-websocket_topics
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.7
4
+ version: 2.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Osheroff
@@ -98,9 +98,9 @@ files:
98
98
  - LICENSE
99
99
  - NOTICE.TXT
100
100
  - README.md
101
+ - lib/logstash/outputs/websocket/app.rb
102
+ - lib/logstash/outputs/websocket/pubsub.rb
101
103
  - lib/logstash/outputs/websocket_topics.rb
102
- - lib/logstash/outputs/websocket_topics/app.rb
103
- - lib/logstash/outputs/websocket_topics/pubsub.rb
104
104
  - logstash-output-websocket_topics.gemspec
105
105
  - spec/outputs/websocket_spec.rb
106
106
  homepage: ''