rails_error_dashboard 0.1.33 → 0.1.34
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e265a96f7b5c412e3d6e6b9d0e7856f165823bfb7a2cd26473af87eb71dd4ad0
|
|
4
|
+
data.tar.gz: 14449ddfadc9f9e6e66491a69625b5afd0ce850c1d608080a88f0ce04f418b23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 875c8cd49d99a09600d3ae34c7f738efd73de6c811a1bd384ba5ea32df83b6f1049a6808f19a700ab5eeb667a2ac877c69b0c38d0ceb887d6e1f12ff563c10cb
|
|
7
|
+
data.tar.gz: 69c3b2a1f8aa2534e1bb03fc1f8a4eb5ccc9a9628c2295d6511b885d6f9832367d29cdf279ad6a86199a0915a279ac964cba1b5a9a4ca3583ab6b8d7e11b3282
|
|
@@ -170,7 +170,7 @@ module RailsErrorDashboard
|
|
|
170
170
|
|
|
171
171
|
features.each_with_index do |feature, index|
|
|
172
172
|
say "\n[#{index + 1}/#{features.length}] #{feature[:name]}", :cyan
|
|
173
|
-
say " #{feature[:description]}", :
|
|
173
|
+
say " #{feature[:description]}", :white
|
|
174
174
|
|
|
175
175
|
# Check if feature was passed via command line option
|
|
176
176
|
if options[feature[:key]]
|
|
@@ -183,7 +183,7 @@ module RailsErrorDashboard
|
|
|
183
183
|
if @selected_features[feature[:key]]
|
|
184
184
|
say " ✓ Enabled", :green
|
|
185
185
|
else
|
|
186
|
-
say " ✗ Disabled", :
|
|
186
|
+
say " ✗ Disabled", :white
|
|
187
187
|
end
|
|
188
188
|
end
|
|
189
189
|
end
|
|
@@ -325,13 +325,13 @@ module RailsErrorDashboard
|
|
|
325
325
|
say " 3. Restart your Rails server"
|
|
326
326
|
say " 4. Visit http://localhost:3000/error_dashboard"
|
|
327
327
|
say "\n"
|
|
328
|
-
say "📖 Documentation:", :
|
|
329
|
-
say " • Quick Start: docs/QUICKSTART.md", :
|
|
330
|
-
say " • Complete Feature Guide: docs/FEATURES.md", :
|
|
331
|
-
say " • All Docs: docs/README.md", :
|
|
328
|
+
say "📖 Documentation:", :white
|
|
329
|
+
say " • Quick Start: docs/QUICKSTART.md", :white
|
|
330
|
+
say " • Complete Feature Guide: docs/FEATURES.md", :white
|
|
331
|
+
say " • All Docs: docs/README.md", :white
|
|
332
332
|
say "\n"
|
|
333
|
-
say "⚙️ To enable/disable features later:", :
|
|
334
|
-
say " Edit config/initializers/rails_error_dashboard.rb", :
|
|
333
|
+
say "⚙️ To enable/disable features later:", :white
|
|
334
|
+
say " Edit config/initializers/rails_error_dashboard.rb", :white
|
|
335
335
|
say "\n"
|
|
336
336
|
end
|
|
337
337
|
|
|
@@ -66,7 +66,7 @@ module RailsErrorDashboard
|
|
|
66
66
|
say "Step 4: Remove migrations", :yellow
|
|
67
67
|
say " Delete migration files from db/migrate/:"
|
|
68
68
|
migration_files.each do |file|
|
|
69
|
-
say " - #{File.basename(file)}", :
|
|
69
|
+
say " - #{File.basename(file)}", :white
|
|
70
70
|
end
|
|
71
71
|
say "\n"
|
|
72
72
|
end
|
|
@@ -75,12 +75,12 @@ module RailsErrorDashboard
|
|
|
75
75
|
say "Step 5: Drop database tables (⚠️ DESTRUCTIVE - will delete all error data)", :yellow
|
|
76
76
|
say " Run: rails rails_error_dashboard:db:drop"
|
|
77
77
|
say " Or manually in rails console:"
|
|
78
|
-
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_logs')", :
|
|
79
|
-
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_occurrences')", :
|
|
80
|
-
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_cascade_patterns')", :
|
|
81
|
-
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_baselines')", :
|
|
82
|
-
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_comments')", :
|
|
83
|
-
say " ActiveRecord::Migration.drop_table(:rails_error_dashboard_error_logs) rescue nil", :
|
|
78
|
+
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_logs')", :white
|
|
79
|
+
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_occurrences')", :white
|
|
80
|
+
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_cascade_patterns')", :white
|
|
81
|
+
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_baselines')", :white
|
|
82
|
+
say " ActiveRecord::Base.connection.execute('DROP TABLE rails_error_dashboard_error_comments')", :white
|
|
83
|
+
say " ActiveRecord::Migration.drop_table(:rails_error_dashboard_error_logs) rescue nil", :white
|
|
84
84
|
say "\n"
|
|
85
85
|
end
|
|
86
86
|
|
|
@@ -146,7 +146,7 @@ module RailsErrorDashboard
|
|
|
146
146
|
say "\n"
|
|
147
147
|
say "Database tables to be dropped:", :yellow
|
|
148
148
|
table_names.each do |table|
|
|
149
|
-
say " • #{table}", :
|
|
149
|
+
say " • #{table}", :white
|
|
150
150
|
end
|
|
151
151
|
say "\n"
|
|
152
152
|
say "This action CANNOT be undone!", :red
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_error_dashboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.34
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anjan Jagirdar
|
|
@@ -391,7 +391,7 @@ metadata:
|
|
|
391
391
|
documentation_uri: https://AnjanJ.github.io/rails_error_dashboard
|
|
392
392
|
bug_tracker_uri: https://github.com/AnjanJ/rails_error_dashboard/issues
|
|
393
393
|
post_install_message: "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n
|
|
394
|
-
\ Rails Error Dashboard v0.1.
|
|
394
|
+
\ Rails Error Dashboard v0.1.34\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n\U0001F195
|
|
395
395
|
First time? Quick start:\n rails generate rails_error_dashboard:install\n rails
|
|
396
396
|
db:migrate\n # Add to config/routes.rb:\n mount RailsErrorDashboard::Engine
|
|
397
397
|
=> '/error_dashboard'\n\n\U0001F504 Upgrading from v0.1.x?\n rails db:migrate\n
|
|
@@ -412,7 +412,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
412
412
|
- !ruby/object:Gem::Version
|
|
413
413
|
version: '0'
|
|
414
414
|
requirements: []
|
|
415
|
-
rubygems_version:
|
|
415
|
+
rubygems_version: 4.0.3
|
|
416
416
|
specification_version: 4
|
|
417
417
|
summary: Self-hosted Rails error monitoring — free, forever. Zero SaaS fees, zero
|
|
418
418
|
lock-in.
|