exception_details 0.0.3 → 0.0.4
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.
- data/README.md +5 -2
- data/lib/exception_details/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -6,13 +6,13 @@ from the time of the Exception and adds an informative log string.
|
|
|
6
6
|
|
|
7
7
|
Features/benefits:
|
|
8
8
|
|
|
9
|
-
* Get detail (variables/values) about your Exception circumstances *without* reproducing the problem
|
|
9
|
+
* Get detail (variables/values) about your Exception circumstances *without* reproducing the problem.
|
|
10
10
|
|
|
11
11
|
* Reduced need for debug/logging code to find out what went wrong.
|
|
12
12
|
|
|
13
13
|
* Minimize ambiguous errors (which variable was nil?).
|
|
14
14
|
|
|
15
|
-
* A single
|
|
15
|
+
* A single method for a loggable string (avoid repeating exception log string creation)
|
|
16
16
|
|
|
17
17
|
* Get Pry like debug knowledge from cron job errors and running systems from the log, without being there.
|
|
18
18
|
|
|
@@ -80,6 +80,9 @@ jruby, so feel free to try it out.
|
|
|
80
80
|
|
|
81
81
|
- This gem is still new...
|
|
82
82
|
|
|
83
|
+
- binding of caller is experiencing some segfault issues on some rubies, so this is not
|
|
84
|
+
ideal for a production stack... Shame, as how awesome would using this in production be?
|
|
85
|
+
|
|
83
86
|
## Contributing
|
|
84
87
|
|
|
85
88
|
1. Fork it
|