solid_log-ui 0.2.0 → 0.2.1

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
  SHA256:
3
- metadata.gz: be225408f280d041373a099b8a84c853b70c4c6b19a2acd329309e8d69e4047b
4
- data.tar.gz: 94afcfdc410d1aeb9a409433e094d58e5921fb1d10b533c43fa996e34f6f2a61
3
+ metadata.gz: a16cf31e852cbe16465a7ea1e7b7d02bc958a63d6de416169373a46abfcd0f83
4
+ data.tar.gz: 16dfa1f600271ca2635d26d0ff80db788f2f42121626008681d7563f7fce0fbd
5
5
  SHA512:
6
- metadata.gz: e7311b463e1c17a1c08b49d6310a2af66fff87212a6f479241e60531ee474e51d469771b7c81fd762eb52fc45c8e24149f48f1e0d9558fcca6d7271405ec3a06
7
- data.tar.gz: 32fb42aeb73501410d46a389e4fc8e88228ca34c6d26a6b5d4b2289230ef95feec113e8709d059b22f35b620517ebe898146377fa3dee294075688bd0ffd5632
6
+ metadata.gz: a25218aa878a078aa3a12b0f773290cdfb8a2d31eee70c42bdaa5489ff1746368449505ba6c9d0dae11f0fcccc06b775e6efe3e6a7eeb68b7b938bfc31ab0c32
7
+ data.tar.gz: ce01da94bb59db56af2c3cdbd16e556b7e053c3ecc1119cc679ee345447c448fda6f5cb9ec43060485b4bd5d466ced9c644b567b8cc1bd55e8aa9e38288b2784
@@ -83,17 +83,17 @@ module SolidLog
83
83
 
84
84
  # Wrap in without_logging to prevent ActionCable logs from being captured by SolidLog
85
85
  SolidLog.without_logging do
86
- $stderr.puts "[LogStreamChannel] Received broadcast with #{entry_ids.size} entry IDs: #{entry_ids.first(5)}" if ENV['SOLIDLOG_DEBUG']
86
+ $stderr.puts "[LogStreamChannel] Received broadcast with #{entry_ids.size} entry IDs: #{entry_ids.first(5)}" if ENV["SOLIDLOG_DEBUG"]
87
87
 
88
88
  # Fetch entries matching these IDs
89
89
  entries = SolidLog::Entry.where(id: entry_ids).order(:id)
90
- $stderr.puts "[LogStreamChannel] Found #{entries.size} entries in database" if ENV['SOLIDLOG_DEBUG']
90
+ $stderr.puts "[LogStreamChannel] Found #{entries.size} entries in database" if ENV["SOLIDLOG_DEBUG"]
91
91
 
92
92
  # Filter to only entries matching this client's filters
93
93
  transmitted_count = 0
94
94
  entries.each do |entry|
95
95
  matches = entry_matches_filters?(entry)
96
- $stderr.puts "[LogStreamChannel] Entry #{entry.id} matches filters: #{matches}" if ENV['SOLIDLOG_DEBUG']
96
+ $stderr.puts "[LogStreamChannel] Entry #{entry.id} matches filters: #{matches}" if ENV["SOLIDLOG_DEBUG"]
97
97
  next unless matches
98
98
 
99
99
  # Render HTML for this specific entry with proper route context
@@ -108,7 +108,7 @@ module SolidLog
108
108
  transmitted_count += 1
109
109
  end
110
110
 
111
- $stderr.puts "[LogStreamChannel] Transmitted #{transmitted_count} entries to client (filter: #{@filter_key})" if ENV['SOLIDLOG_DEBUG']
111
+ $stderr.puts "[LogStreamChannel] Transmitted #{transmitted_count} entries to client (filter: #{@filter_key})" if ENV["SOLIDLOG_DEBUG"]
112
112
  end
113
113
  end
114
114
 
@@ -1,7 +1,5 @@
1
- require_relative "../../../../solid_log-core/lib/solid_log/core/version"
2
-
3
1
  module SolidLog
4
2
  module UI
5
- VERSION = SolidLog::Core::VERSION
3
+ VERSION = "0.2.1"
6
4
  end
7
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_log-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Loman
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.2.0
19
+ version: 0.2.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.2.0
26
+ version: 0.2.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
29
  requirement: !ruby/object:Gem::Requirement