kafka_command 0.0.2 → 0.0.3

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
  SHA256:
3
- metadata.gz: 200ff362598df84d5179f31ab49ad601ec8786f0efb6347aa433a1a3d52b346b
4
- data.tar.gz: 55dea58cb3db1f2f12d4b55ae1c97dbd46fbd1aed257a3e13405b0d7764749a8
3
+ metadata.gz: 7d1e192f69fc08a59bf3d4363078a0873ee1caa102a056a14097d8100d17c9eb
4
+ data.tar.gz: edf12558b2f701dde17748144de9d04cc246c1d2379dafd0004a6d2e4ef545a4
5
5
  SHA512:
6
- metadata.gz: 2439e52c4d80c00bfa8908e48368142fed51087b7703efde7b041f4a0a738abe9fedf5165d29276bd71612a59ffacb0cc93c4845e7b1fd143c734d6dc33c9096
7
- data.tar.gz: 0f072d7e529f3cc5997f238d48afa461662f574be785d4a08875cd3d24d18ec8648ec9ec06ee1e761a0926ba30d715435b91cdf96a5c2e71f16be733160d7e3a
6
+ metadata.gz: 6cd3b1cc49e3ce4553abf27289c701b3574e7f53b9f40cf0dd689b00f6559ceab9fbf35707931fcee1129b51c0cf40a1a232a517d24a2eed40a3a9bef8ca7543
7
+ data.tar.gz: 56845d893f8de183e4bed8efd3fc9df45319a97dd67b8856002393f5c6639bcbc43a95f03a97894fc97a3f49a44015718d8583cd9d2cb0a30daf0e970b472ec7
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KafkaCommand
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kafka_command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - jasondoc3
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-12-20 00:00:00.000000000 Z
11
+ date: 2019-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -80,8 +80,6 @@ files:
80
80
  - app/assets/stylesheets/kafka_command/application.css
81
81
  - app/assets/stylesheets/kafka_command/clusters.css
82
82
  - app/assets/stylesheets/kafka_command/topics.css
83
- - app/channels/application_cable/channel.rb
84
- - app/channels/application_cable/connection.rb
85
83
  - app/controllers/kafka_command/application_controller.rb
86
84
  - app/controllers/kafka_command/brokers_controller.rb
87
85
  - app/controllers/kafka_command/clusters_controller.rb
@@ -89,8 +87,6 @@ files:
89
87
  - app/controllers/kafka_command/topics_controller.rb
90
88
  - app/helpers/kafka_command/application_helper.rb
91
89
  - app/helpers/kafka_command/consumer_group_helper.rb
92
- - app/jobs/application_job.rb
93
- - app/mailers/application_mailer.rb
94
90
  - app/models/kafka_command/broker.rb
95
91
  - app/models/kafka_command/client.rb
96
92
  - app/models/kafka_command/cluster.rb
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ApplicationCable
4
- class Channel < ActionCable::Channel::Base
5
- end
6
- end
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ApplicationCable
4
- class Connection < ActionCable::Connection::Base
5
- end
6
- end
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module KafkaCommand
4
- class ApplicationJob < ActiveJob::Base
5
- end
6
- end
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module KafkaCommand
4
- class ApplicationMailer < ActionMailer::Base
5
- default from: 'from@example.com'
6
- layout 'mailer'
7
- end
8
- end