faultline-rails 0.5.0 → 0.7.0

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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -0
  3. data/app/assets/stylesheets/faultline/dashboard.css +961 -0
  4. data/app/controllers/faultline/logged_exceptions_controller.rb +81 -8
  5. data/app/helpers/faultline/logged_exceptions_helper.rb +84 -5
  6. data/app/javascript/controllers/faultline_controller.js +349 -7
  7. data/app/javascript/faultline/controllers/sidebar_controller.js +21 -0
  8. data/app/javascript/faultline/controllers/theme_controller.js +48 -0
  9. data/app/views/faultline/logged_exceptions/_exceptions.html.erb +132 -84
  10. data/app/views/faultline/logged_exceptions/_show.html.erb +281 -60
  11. data/app/views/faultline/logged_exceptions/index.html.erb +192 -123
  12. data/app/views/faultline/logged_exceptions/show.html.erb +1 -1
  13. data/app/views/layouts/faultline/application.html.erb +116 -51
  14. data/faultline-rails.gemspec +1 -0
  15. data/lib/faultline/cleanup.rb +32 -0
  16. data/lib/faultline/configuration.rb +172 -4
  17. data/lib/faultline/engine.rb +22 -0
  18. data/lib/faultline/logger.rb +188 -0
  19. data/lib/faultline/notifications.rb +80 -0
  20. data/lib/faultline/version.rb +1 -1
  21. data/lib/faultline.rb +10 -0
  22. data/lib/generators/faultline/customize_generator.rb +117 -0
  23. data/lib/generators/faultline/install_generator.rb +15 -0
  24. data/lib/generators/faultline/templates/faultline.rb +70 -37
  25. data/lib/generators/faultline/templates/javascript/controllers/faultline_controller.js +310 -0
  26. data/lib/generators/faultline/templates/views/faultline/logged_exceptions/_exceptions.html.erb +124 -0
  27. data/lib/generators/faultline/templates/views/faultline/logged_exceptions/_show.html.erb +83 -0
  28. data/lib/generators/faultline/templates/views/faultline/logged_exceptions/index.html.erb +113 -0
  29. data/lib/generators/faultline/templates/views/layouts/faultline/application.html.erb +133 -0
  30. data/lib/tasks/faultline.rake +147 -0
  31. metadata +15 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c846154434391fa5b6aff599c9c6f70dfd2d90690d5ce2050be6d284cd2d5c39
4
- data.tar.gz: 3191607d7ef2b2f0694d0a10e0a54899ddd4569dd007adba6d9f4e4bc09c50f2
3
+ metadata.gz: 24fbd55d2484532bff1b060c9526e48e05192bb6199c38f05530958711b8dc53
4
+ data.tar.gz: f736030fb9ce0e5d9cb40ad8751499bb27997be0126ab781b0907ac9901925c6
5
5
  SHA512:
6
- metadata.gz: 89a84d8d6ff2955fa71be82b7deef6100e10953548ef381cde60b2e0df57bd3fa07403899900d8ce85bb1ee11ca66ee316472062e77baedceccde538812cf65b
7
- data.tar.gz: d63e16bf9eba501733ef42b694fb1315da801fa544579d2c5db999ee547841d2c7879247573f374303283e7aec100cbef436d4e9e5a608074270efebdda0567d
6
+ metadata.gz: 2b4e8ec5a835b68a52cf24c9b9875a652733db1a59a82e255aff0b579b0e210ec42c8f4ea4a4ec1fd1b92db428dbc8de582ba9166801c5bacc7c66967eafe12e
7
+ data.tar.gz: 68cdb0c541e6b50305bee182b0f739bb70551acf81b576191915da68a9079d9bdfadbee88d151b08aff54b2ef5bcb588b3e75ac3cca00e96f6452b995d0298c8
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Faultline Rails
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/faultline-rails.svg)](https://rubygems.org/gems/faultline-rails)
4
+ [![GitHub Sponsors](https://img.shields.io/badge/Sponsor-GitHub%20Sponsors-ea4aaa)](https://github.com/sponsors/tamiru)
5
+
3
6
  Faultline is a production-friendly exception dashboard for Rails 8. It records unhandled application exceptions and gives your team a fast, searchable view of messages, requests, environments, and backtraces.
4
7
 
5
8
  The dashboard is server-rendered and progressively enhanced with:
@@ -256,6 +259,17 @@ bin/rails test
256
259
 
257
260
  The repository includes a Rails dummy application under `test/dummy` for engine integration testing.
258
261
 
262
+ ## Support
263
+
264
+ If you find Faultline useful, consider supporting the project:
265
+
266
+ - ⭐ **Star the repo** — Help others discover Faultline
267
+ - 🐛 **Report issues** — Help improve the gem
268
+ - 💡 **Contribute** — Submit pull requests
269
+ - 💰 **Sponsor** — [GitHub Sponsors](https://github.com/sponsors/tamiru)
270
+
271
+ Your support helps maintain and improve Faultline for the Rails community.
272
+
259
273
  ## License
260
274
 
261
275
  Faultline Rails is released under the [MIT License](MIT-LICENSE).