rails-health-checker 0.1.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be0f112b61f929e7dd3026fa40d9f63ce230641ef34ad956637e8c098e1a7058
4
- data.tar.gz: 2fb188bf9508328f57ed7b11e85947f60a57e1dd8e20caf32853701ce92a80e9
3
+ metadata.gz: 6e12424d96453a12babdcb6a30eddad00c4bdf6397b684879a16a2d10248fe6d
4
+ data.tar.gz: f2652b3a9015c5d8f19590daf2f3d5f04c2870b2a9d2baadf73a0da07e4781c9
5
5
  SHA512:
6
- metadata.gz: b3eeacdbb52e1ce1f3741433ae0c732d19e01d9ad3d08ea27ed777387ad98c9e24dfafd41f89a62d5b1e15e1b1daf7486305d7ae59012af3f96e4ca8d9f9b123
7
- data.tar.gz: aa42aba4244369ba52b22c12b16515c7a7f3955d8d67e2a53ddd5b23bc6317eea737be285a6be665f32891506f51fc9df6bf6d797e6326af663d0944b55d3c11
6
+ metadata.gz: 3b1ecbf6c4d8a82af05f1b841f88f12dc3e25b4bcb734d6d2894b9f1b30148667c947b957d5c4a15cadd2f8af14c38810df4e42017c7d2b5db18314b0933b472
7
+ data.tar.gz: f3224c061b4c36624e0279dd70baa5a7063b5e3e861b754b71599e4430cce0ee15e291b3d53d2e59ccfefc67cc0f46c1344d0b1d36af09aa26cc88e6485d6665
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # RailsHealthChecker
1
+ # RailsHealthMonitor
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/rails-health-checker.svg)](https://badge.fury.io/rb/rails-health-checker)
4
- [![Documentation](https://img.shields.io/badge/docs-rails--health--checker.netlify.app-blue)](https://rails-health-checker.netlify.app)
5
- [![GitHub](https://img.shields.io/github/license/ArshdeepGrover/rails-health-checker)](https://github.com/ArshdeepGrover/rails-health-checker/blob/main/LICENSE)
3
+ [![Gem Version](https://badge.fury.io/rb/rails-health-monitor.svg)](https://badge.fury.io/rb/rails-health-monitor)
4
+ [![Documentation](https://img.shields.io/badge/docs-rails--health--monitor.netlify.app-blue)](https://rails-health-monitor.netlify.app)
5
+ [![GitHub](https://img.shields.io/github/license/ArshdeepGrover/rails-health-monitor)](https://github.com/ArshdeepGrover/rails-health-monitor/blob/main/LICENSE)
6
6
 
7
7
  A comprehensive health checking gem for Ruby on Rails applications and their dependencies.
8
8
 
9
- 🌐 **[Live Documentation & Demo](https://rails-health-checker.netlify.app)**
9
+ 🌐 **[Live Documentation & Demo](https://rails-health-monitor.netlify.app)**
10
10
 
11
11
  ## Features
12
12
 
@@ -23,7 +23,7 @@ A comprehensive health checking gem for Ruby on Rails applications and their dep
23
23
  Add this line to your application's Gemfile:
24
24
 
25
25
  ```ruby
26
- gem 'rails-health-checker'
26
+ gem 'rails-health-monitor'
27
27
  ```
28
28
 
29
29
  And then execute:
@@ -35,7 +35,7 @@ bundle install
35
35
  Or install it directly:
36
36
 
37
37
  ```bash
38
- gem install rails-health-checker
38
+ gem install rails-health-monitor
39
39
  ```
40
40
 
41
41
  ## Usage
@@ -44,10 +44,10 @@ gem install rails-health-checker
44
44
 
45
45
  ```ruby
46
46
  # Run complete health check
47
- results = RailsHealthChecker.check
47
+ results = RailsHealthMonitor.check
48
48
 
49
49
  # Check specific components
50
- analyzer = RailsHealthChecker::GemAnalyzer.new
50
+ analyzer = RailsHealthMonitor::GemAnalyzer.new
51
51
  gem_health = analyzer.analyze
52
52
  ```
53
53
 
@@ -104,18 +104,55 @@ export HEALTH_PASSWORD=your_secure_password
104
104
  - Username: `admin`
105
105
  - Password: `health123`
106
106
 
107
- ### Manual Middleware Setup (if needed)
107
+ ### Manual Setup Options
108
108
 
109
- If the middleware doesn't load automatically, add to `config/application.rb`:
109
+ **Option 1: Middleware Setup (Recommended)**
110
+ Add to `config/application.rb`:
110
111
 
111
112
  ```ruby
112
- require 'rails_health_checker'
113
+ require 'rails_health_monitor'
113
114
 
114
- class Application < Rails::Application
115
- config.middleware.use RailsHealthChecker::DashboardMiddleware
115
+ module YourAppName
116
+ class Application < Rails::Application
117
+ config.middleware.use RailsHealthMonitor::DashboardMiddleware
118
+ end
116
119
  end
117
120
  ```
118
121
 
122
+ **Option 2: Routes Setup (Alternative)**
123
+ Add to `config/routes.rb`:
124
+
125
+ ```ruby
126
+ Rails.application.routes.draw do
127
+ get '/health', to: proc { |env|
128
+ results = RailsHealthMonitor.check
129
+ [200, {'Content-Type' => 'application/json'}, [results.to_json]]
130
+ }
131
+ end
132
+ ```
133
+
134
+ **Then restart your server:**
135
+ ```bash
136
+ rails server
137
+ ```
138
+
139
+ ## Troubleshooting
140
+
141
+ ### "No route matches [GET] '/health'" Error
142
+
143
+ If you get this error, the middleware isn't loaded. Try:
144
+
145
+ 1. **Manual middleware setup** (see above)
146
+ 2. **Restart your Rails server**:
147
+ ```bash
148
+ rails server
149
+ ```
150
+ 3. **Verify gem installation**:
151
+ ```bash
152
+ bundle install
153
+ bundle list | grep rails-health-monitor
154
+ ```
155
+
119
156
  ## Development
120
157
 
121
158
  After checking out the repo, run:
@@ -152,10 +189,10 @@ This will:
152
189
 
153
190
  ## Links
154
191
 
155
- - 🌐 **[Documentation & Demo](https://rails-health-checker.netlify.app)**
156
- - 📦 **[RubyGems](https://rubygems.org/gems/rails-health-checker)**
157
- - 🐙 **[GitHub Repository](https://github.com/ArshdeepGrover/rails-health-checker)**
158
- - 🐛 **[Issue Tracker](https://github.com/ArshdeepGrover/rails-health-checker/issues)**
192
+ - 🌐 **[Documentation & Demo](https://rails-health-monitor.netlify.app)**
193
+ - 📦 **[RubyGems](https://rubygems.org/gems/rails-health-monitor)**
194
+ - 🐙 **[GitHub Repository](https://github.com/ArshdeepGrover/rails-health-monitor)**
195
+ - 🐛 **[Issue Tracker](https://github.com/ArshdeepGrover/rails-health-monitor/issues)**
159
196
 
160
197
  ## Contributing
161
198
 
metadata CHANGED
@@ -1,101 +1,56 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-health-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arshdeep Singh
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-09 00:00:00.000000000 Z
11
+ date: 2025-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: rails-health-monitor
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '6.0'
19
+ version: 1.1.3
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: '6.0'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '2.0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '2.0'
41
- - !ruby/object:Gem::Dependency
42
- name: rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
55
- description: A Ruby gem that provides comprehensive health checking for Rails applications,
56
- including database connectivity, gem dependencies, security vulnerabilities, and
57
- system health monitoring with a web dashboard.
26
+ version: 1.1.3
27
+ description: This gem has been renamed to rails-health-monitor. Please update your
28
+ Gemfile to use 'rails-health-monitor' instead.
58
29
  email:
59
30
  - arsh199820@gmail.com
60
31
  executables: []
61
32
  extensions: []
62
33
  extra_rdoc_files: []
63
34
  files:
64
- - CHANGELOG.md
65
- - COMMANDS.md
66
- - Gemfile
67
- - Gemfile.lock
68
- - LICENSE
69
35
  - README.md
70
- - Rakefile
71
- - SECURITY.md
72
- - TESTING.md
73
- - TEST_RESULTS.md
74
- - example_usage.rb
75
- - lib/rails_health_checker.rb
76
- - lib/rails_health_checker/checker.rb
77
- - lib/rails_health_checker/dashboard_middleware.rb
78
- - lib/rails_health_checker/gem_analyzer.rb
79
- - lib/rails_health_checker/health_middleware.rb
80
- - lib/rails_health_checker/job_analyzer.rb
81
- - lib/rails_health_checker/railtie.rb
82
- - lib/rails_health_checker/report_generator.rb
83
- - lib/rails_health_checker/system_analyzer.rb
84
- - lib/rails_health_checker/tasks.rb
85
- - lib/rails_health_checker/version.rb
86
- - rails_health_checker.gemspec
87
- - simple_test.rb
88
- - test_gem.rb
89
- homepage: https://rails-health-checker.netlify.app
36
+ homepage: https://rails-health-monitor.netlify.app
90
37
  licenses:
91
38
  - MIT
92
39
  metadata:
93
- homepage_uri: https://rails-health-checker.netlify.app
94
- source_code_uri: https://github.com/ArshdeepGrover/rails-health-checker
95
- changelog_uri: https://github.com/ArshdeepGrover/rails-health-checker/blob/main/CHANGELOG.md
96
- documentation_uri: https://rails-health-checker.netlify.app
97
- bug_tracker_uri: https://github.com/ArshdeepGrover/rails-health-checker/issues
98
- post_install_message:
40
+ homepage_uri: https://rails-health-monitor.netlify.app
41
+ source_code_uri: https://github.com/ArshdeepGrover/rails-health-monitor
42
+ post_install_message: |2+
43
+
44
+ ⚠️ WARNING: rails-health-checker has been renamed!
45
+
46
+ Please update your Gemfile from:
47
+ gem 'rails-health-checker'
48
+
49
+ To:
50
+ gem 'rails-health-monitor'
51
+
52
+ Visit: https://rails-health-monitor.netlify.app
53
+
99
54
  rdoc_options: []
100
55
  require_paths:
101
56
  - lib
@@ -113,5 +68,6 @@ requirements: []
113
68
  rubygems_version: 3.5.16
114
69
  signing_key:
115
70
  specification_version: 4
116
- summary: Comprehensive health checker for Rails applications and dependencies
71
+ summary: 'DEPRECATED: Use rails-health-monitor instead'
117
72
  test_files: []
73
+ ...
data/CHANGELOG.md DELETED
@@ -1,37 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [0.1.0] - 2025-11-09
9
-
10
- ### Added
11
- - Initial release of RailsHealthChecker gem
12
- - Rails version compatibility checking
13
- - Ruby version validation
14
- - Database connectivity testing
15
- - Gem dependencies analysis
16
- - Security vulnerability detection
17
- - HTTP health endpoint with web dashboard
18
- - Rake tasks for command-line health checking
19
- - Password-protected health dashboard
20
- - Real-time health scoring (0-100)
21
- - Auto-refresh dashboard functionality
22
- - System information display
23
- - Priority actions with color-coded urgency
24
- - Comprehensive health reporting
25
-
26
- ### Features
27
- - 🏥 Visual health overview with status indicators
28
- - 📊 Real-time health score calculation
29
- - 🔧 System information (Rails/Ruby versions)
30
- - 💾 Database connectivity status
31
- - 📦 Gem dependencies analysis
32
- - 🔒 Security vulnerability overview
33
- - 🎯 Priority actions with urgency levels
34
- - 🔄 Auto-refresh every 30 seconds
35
- - 🔐 Password-protected access
36
-
37
- [0.1.0]: https://github.com/ArshdeepGrover/rails-health-checker/releases/tag/v0.1.0
data/COMMANDS.md DELETED
@@ -1,118 +0,0 @@
1
- # Commands Reference
2
-
3
- ## Development Commands
4
-
5
- ### Setup
6
- ```bash
7
- bundle install
8
- ```
9
-
10
- ### Testing
11
- ```bash
12
- bundle exec rspec
13
- ```
14
-
15
- ### Build
16
- ```bash
17
- bundle exec rake build
18
- ```
19
-
20
- ## Release Process
21
-
22
- ### 1. Update Version
23
- Edit `lib/rails_health_checker/version.rb`:
24
- ```ruby
25
- VERSION = "x.x.x"
26
- ```
27
-
28
- ### 2. Update Changelog
29
- Add changes to `CHANGELOG.md` (if exists) or document in commit message.
30
-
31
- ### 3. Commit Changes
32
- ```bash
33
- git add .
34
- git commit -m "Bump version to x.x.x"
35
- ```
36
-
37
- ### 4. Release
38
- ```bash
39
- bundle exec rake release
40
- ```
41
-
42
- This command will:
43
- - Build the gem
44
- - Create git tag
45
- - Push tag to GitHub
46
- - Push gem to RubyGems.org
47
-
48
- ### Manual Release (if needed)
49
- ```bash
50
- # Build
51
- gem build rails-health-checker.gemspec
52
-
53
- # Push to RubyGems
54
- gem push rails-health-checker-x.x.x.gem
55
-
56
- # Tag and push
57
- git tag vx.x.x
58
- git push origin vx.x.x
59
- ```
60
-
61
- ## Usage Commands
62
-
63
- ### Rake Tasks
64
- ```bash
65
- rake health:check # Complete health check
66
- rake health:gems # Check gem dependencies
67
- rake health:database # Check database connectivity
68
- ```
69
-
70
- ### Programmatic
71
- ```ruby
72
- results = RailsHealthChecker.check
73
- analyzer = RailsHealthChecker::GemAnalyzer.new
74
- gem_health = analyzer.analyze
75
- ```
76
-
77
- ### HTTP Endpoint
78
- ```
79
- GET /health # Health dashboard
80
- ```
81
-
82
- ## Deployment Commands
83
-
84
- ### Deploy to RubyGems
85
- ```bash
86
- # Login to RubyGems (first time only)
87
- gem signin
88
-
89
- # Deploy latest version
90
- bundle exec rake release
91
- ```
92
-
93
- ### Deploy Documentation
94
- ```bash
95
- # If using GitHub Pages
96
- git push origin main
97
-
98
- # If using Netlify (manual)
99
- # Upload docs folder to Netlify dashboard
100
-
101
- # If using custom server
102
- scp -r docs/ user@server:/path/to/docs
103
- ```
104
-
105
- ### Verify Deployment
106
- ```bash
107
- # Check gem is live
108
- gem search rails-health-checker
109
-
110
- # Test installation
111
- gem install rails-health-checker
112
- ```
113
-
114
- ## Environment Variables
115
- ```bash
116
- export HEALTH_USERNAME=your_username
117
- export HEALTH_PASSWORD=your_secure_password
118
- ```
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec
4
-
5
- gem "rake", "~> 13.0"
6
- gem "rspec", "~> 3.0"
data/Gemfile.lock DELETED
@@ -1,222 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- rails-health-checker (0.1.0)
5
- bundler (>= 2.0)
6
- rails (>= 6.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (7.1.5.2)
12
- actionpack (= 7.1.5.2)
13
- activesupport (= 7.1.5.2)
14
- nio4r (~> 2.0)
15
- websocket-driver (>= 0.6.1)
16
- zeitwerk (~> 2.6)
17
- actionmailbox (7.1.5.2)
18
- actionpack (= 7.1.5.2)
19
- activejob (= 7.1.5.2)
20
- activerecord (= 7.1.5.2)
21
- activestorage (= 7.1.5.2)
22
- activesupport (= 7.1.5.2)
23
- mail (>= 2.7.1)
24
- net-imap
25
- net-pop
26
- net-smtp
27
- actionmailer (7.1.5.2)
28
- actionpack (= 7.1.5.2)
29
- actionview (= 7.1.5.2)
30
- activejob (= 7.1.5.2)
31
- activesupport (= 7.1.5.2)
32
- mail (~> 2.5, >= 2.5.4)
33
- net-imap
34
- net-pop
35
- net-smtp
36
- rails-dom-testing (~> 2.2)
37
- actionpack (7.1.5.2)
38
- actionview (= 7.1.5.2)
39
- activesupport (= 7.1.5.2)
40
- nokogiri (>= 1.8.5)
41
- racc
42
- rack (>= 2.2.4)
43
- rack-session (>= 1.0.1)
44
- rack-test (>= 0.6.3)
45
- rails-dom-testing (~> 2.2)
46
- rails-html-sanitizer (~> 1.6)
47
- actiontext (7.1.5.2)
48
- actionpack (= 7.1.5.2)
49
- activerecord (= 7.1.5.2)
50
- activestorage (= 7.1.5.2)
51
- activesupport (= 7.1.5.2)
52
- globalid (>= 0.6.0)
53
- nokogiri (>= 1.8.5)
54
- actionview (7.1.5.2)
55
- activesupport (= 7.1.5.2)
56
- builder (~> 3.1)
57
- erubi (~> 1.11)
58
- rails-dom-testing (~> 2.2)
59
- rails-html-sanitizer (~> 1.6)
60
- activejob (7.1.5.2)
61
- activesupport (= 7.1.5.2)
62
- globalid (>= 0.3.6)
63
- activemodel (7.1.5.2)
64
- activesupport (= 7.1.5.2)
65
- activerecord (7.1.5.2)
66
- activemodel (= 7.1.5.2)
67
- activesupport (= 7.1.5.2)
68
- timeout (>= 0.4.0)
69
- activestorage (7.1.5.2)
70
- actionpack (= 7.1.5.2)
71
- activejob (= 7.1.5.2)
72
- activerecord (= 7.1.5.2)
73
- activesupport (= 7.1.5.2)
74
- marcel (~> 1.0)
75
- activesupport (7.1.5.2)
76
- base64
77
- benchmark (>= 0.3)
78
- bigdecimal
79
- concurrent-ruby (~> 1.0, >= 1.0.2)
80
- connection_pool (>= 2.2.5)
81
- drb
82
- i18n (>= 1.6, < 2)
83
- logger (>= 1.4.2)
84
- minitest (>= 5.1)
85
- mutex_m
86
- securerandom (>= 0.3)
87
- tzinfo (~> 2.0)
88
- base64 (0.3.0)
89
- benchmark (0.4.1)
90
- bigdecimal (3.3.1)
91
- builder (3.3.0)
92
- cgi (0.5.0)
93
- concurrent-ruby (1.3.5)
94
- connection_pool (2.5.4)
95
- crass (1.0.6)
96
- date (3.4.1)
97
- diff-lcs (1.5.1)
98
- drb (2.2.3)
99
- erb (4.0.4)
100
- cgi (>= 0.3.3)
101
- erubi (1.13.1)
102
- globalid (1.3.0)
103
- activesupport (>= 6.1)
104
- i18n (1.14.7)
105
- concurrent-ruby (~> 1.0)
106
- io-console (0.8.1)
107
- irb (1.15.2)
108
- pp (>= 0.6.0)
109
- rdoc (>= 4.0.0)
110
- reline (>= 0.4.2)
111
- logger (1.7.0)
112
- loofah (2.24.1)
113
- crass (~> 1.0.2)
114
- nokogiri (>= 1.12.0)
115
- mail (2.8.1)
116
- mini_mime (>= 0.1.1)
117
- net-imap
118
- net-pop
119
- net-smtp
120
- marcel (1.1.0)
121
- mini_mime (1.1.5)
122
- minitest (5.26.0)
123
- mutex_m (0.3.0)
124
- net-imap (0.4.22)
125
- date
126
- net-protocol
127
- net-pop (0.1.2)
128
- net-protocol
129
- net-protocol (0.2.2)
130
- timeout
131
- net-smtp (0.5.1)
132
- net-protocol
133
- nio4r (2.7.4)
134
- nokogiri (1.17.2-arm64-darwin)
135
- racc (~> 1.4)
136
- pp (0.6.3)
137
- prettyprint
138
- prettyprint (0.2.0)
139
- psych (5.2.6)
140
- date
141
- stringio
142
- racc (1.8.1)
143
- rack (3.2.3)
144
- rack-session (2.1.1)
145
- base64 (>= 0.1.0)
146
- rack (>= 3.0.0)
147
- rack-test (2.2.0)
148
- rack (>= 1.3)
149
- rackup (2.2.1)
150
- rack (>= 3)
151
- rails (7.1.5.2)
152
- actioncable (= 7.1.5.2)
153
- actionmailbox (= 7.1.5.2)
154
- actionmailer (= 7.1.5.2)
155
- actionpack (= 7.1.5.2)
156
- actiontext (= 7.1.5.2)
157
- actionview (= 7.1.5.2)
158
- activejob (= 7.1.5.2)
159
- activemodel (= 7.1.5.2)
160
- activerecord (= 7.1.5.2)
161
- activestorage (= 7.1.5.2)
162
- activesupport (= 7.1.5.2)
163
- bundler (>= 1.15.0)
164
- railties (= 7.1.5.2)
165
- rails-dom-testing (2.3.0)
166
- activesupport (>= 5.0.0)
167
- minitest
168
- nokogiri (>= 1.6)
169
- rails-html-sanitizer (1.6.2)
170
- loofah (~> 2.21)
171
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
172
- railties (7.1.5.2)
173
- actionpack (= 7.1.5.2)
174
- activesupport (= 7.1.5.2)
175
- irb
176
- rackup (>= 1.0.0)
177
- rake (>= 12.2)
178
- thor (~> 1.0, >= 1.2.2)
179
- zeitwerk (~> 2.6)
180
- rake (13.3.0)
181
- rdoc (6.15.0)
182
- erb
183
- psych (>= 4.0.0)
184
- tsort
185
- reline (0.6.2)
186
- io-console (~> 0.5)
187
- rspec (3.13.0)
188
- rspec-core (~> 3.13.0)
189
- rspec-expectations (~> 3.13.0)
190
- rspec-mocks (~> 3.13.0)
191
- rspec-core (3.13.0)
192
- rspec-support (~> 3.13.0)
193
- rspec-expectations (3.13.1)
194
- diff-lcs (>= 1.2.0, < 2.0)
195
- rspec-support (~> 3.13.0)
196
- rspec-mocks (3.13.1)
197
- diff-lcs (>= 1.2.0, < 2.0)
198
- rspec-support (~> 3.13.0)
199
- rspec-support (3.13.1)
200
- securerandom (0.3.2)
201
- stringio (3.1.7)
202
- thor (1.4.0)
203
- timeout (0.4.3)
204
- tsort (0.2.0)
205
- tzinfo (2.0.6)
206
- concurrent-ruby (~> 1.0)
207
- websocket-driver (0.8.0)
208
- base64
209
- websocket-extensions (>= 0.1.0)
210
- websocket-extensions (0.1.5)
211
- zeitwerk (2.6.18)
212
-
213
- PLATFORMS
214
- arm64-darwin
215
-
216
- DEPENDENCIES
217
- rails-health-checker!
218
- rake (~> 13.0)
219
- rspec (~> 3.0)
220
-
221
- BUNDLED WITH
222
- 2.5.16
data/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Arshdeep Singh
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task default: :spec