findbug 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: 494c404f3c7c5304cc166a253ccf04757b9b2ab2728c280931f9b1643ce5c5aa
4
- data.tar.gz: 9e21ab5ccfd0c92df80d0517176201a46dc4854e238cc70a2ada04461ff647b0
3
+ metadata.gz: da1d392b6e05c3ad804b9934c6680e9c5602db9dbe4abf7d96fe9a58ac72ff15
4
+ data.tar.gz: fd6934649e5ab318cd61b2d81623ce31d1f26d3adcaca07608a52d27f755e469
5
5
  SHA512:
6
- metadata.gz: 9bedec8cfb4d78ab1e11205353b883e0fe035e30692d2485208db7382a98e5d97398df436a5acf19e0329eb9d60db4bdbdf69605281c7ba714bcabdaef2c5347
7
- data.tar.gz: c3d2af6ee0473bd1ac01330b912b892ac23a125c12e11bfb0f9b138a9bc411d1eb6bf722f627d6397c2d20ce308e00d1c18a1e5c8cefed76ca86bec8da3d9ff5
6
+ metadata.gz: 980da2b4212a7fafe712be0d39112659f5f2a9a2aa5d6e199d3416685b402ad78314a370ef256abf65261fd91af8bbdb160a39c40a4601b5ff5280723bfbc8eb
7
+ data.tar.gz: 408e475663d7bfaf9d8c64961082c49c0ed4fd052fb9a2bc8c6f9ab3ffc60652a4df70aad59b2265bbaa5093b854221638c6831ccd9d6fd60b3e677147456d3b
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Findbug
1
+ # FindBug
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/findbug.svg)](https://badge.fury.io/rb/findbug)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -6,7 +6,7 @@
6
6
 
7
7
  **Self-hosted error tracking and performance monitoring for Rails applications.**
8
8
 
9
- Findbug provides Sentry-like functionality with all data stored on your own infrastructure using Redis and your database. Zero external dependencies, full data ownership.
9
+ FindBug provides Sentry-like functionality with all data stored on your own infrastructure using Redis and your database. Zero external dependencies, full data ownership.
10
10
 
11
11
  ## Features
12
12
 
@@ -19,9 +19,9 @@ Findbug provides Sentry-like functionality with all data stored on your own infr
19
19
  - **Works Out of the Box** - Built-in background persister, no job scheduler required
20
20
  - **Rails 7+ Native** - Designed for modern Rails applications
21
21
 
22
- ## Why Findbug?
22
+ ## Why FindBug?
23
23
 
24
- | Feature | Sentry/Bugsnag | Findbug |
24
+ | Feature | Sentry/Bugsnag | FindBug |
25
25
  |---------|----------------|---------|
26
26
  | Data Location | Third-party servers | Your infrastructure |
27
27
  | Monthly Cost | $26+ per seat | Free |
@@ -56,7 +56,7 @@ rails db:migrate
56
56
 
57
57
  ### 1. Configure Redis (Optional)
58
58
 
59
- Findbug uses Redis as a high-speed buffer. By default, it connects to `redis://localhost:6379/1`.
59
+ FindBug uses Redis as a high-speed buffer. By default, it connects to `redis://localhost:6379/1`.
60
60
 
61
61
  To use a different Redis URL, set the environment variable:
62
62
 
@@ -83,7 +83,7 @@ Access the dashboard at: `http://localhost:3000/findbug`
83
83
 
84
84
  ### 3. That's It!
85
85
 
86
- Findbug automatically:
86
+ FindBug automatically:
87
87
  - Captures unhandled exceptions
88
88
  - Monitors request performance
89
89
  - Persists data to your database (via built-in background thread)
@@ -178,7 +178,7 @@ end
178
178
 
179
179
  ### Automatic Error Capture
180
180
 
181
- Findbug automatically captures:
181
+ FindBug automatically captures:
182
182
  - Unhandled exceptions in controllers
183
183
  - Errors reported via `Rails.error.handle` / `Rails.error.report`
184
184
  - Any exception that bubbles up through the middleware stack
@@ -299,7 +299,7 @@ rails findbug:db:stats
299
299
 
300
300
  ## Advanced: Using ActiveJob Instead of Built-in Thread
301
301
 
302
- By default, Findbug uses a built-in background thread for persistence. If you prefer to use ActiveJob with your own job backend:
302
+ By default, FindBug uses a built-in background thread for persistence. If you prefer to use ActiveJob with your own job backend:
303
303
 
304
304
  ```ruby
305
305
  # config/initializers/findbug.rb
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Findbug
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  ===============================================================================
3
- Findbug has been installed successfully!
3
+ FindBug has been installed successfully!
4
4
  ===============================================================================
5
5
 
6
6
  Next steps:
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Findbug Configuration
3
+ # FindBug Configuration
4
4
  #
5
- # This file configures Findbug, your self-hosted error and performance monitoring.
5
+ # This file configures FindBug, your self-hosted error and performance monitoring.
6
6
  # See https://github.com/ITSSOUMIT/findbug for full documentation.
7
7
  #
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: findbug
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
  - Soumit Das
@@ -163,7 +163,7 @@ dependencies:
163
163
  - - "<"
164
164
  - !ruby/object:Gem::Version
165
165
  version: '3.0'
166
- description: Findbug is a Sentry-like error tracking and performance monitoring gem
166
+ description: FindBug is a Sentry-like error tracking and performance monitoring gem
167
167
  that stores data locally using Redis and your database. Features include exception
168
168
  capture, performance instrumentation, alerting, and a built-in dashboard.
169
169
  email: