grim-reaper 1.0.29
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 +7 -0
- data/README.md +511 -0
- data/bin/grim +397 -0
- data/docs/AI_MACHINE_LEARNING.md +373 -0
- data/docs/BACKUP_RECOVERY.md +477 -0
- data/docs/CLOUD_DISTRIBUTED_SYSTEMS.md +502 -0
- data/docs/DEVELOPMENT_TOOLS_INFRASTRUCTURE.md +547 -0
- data/docs/PERFORMANCE_OPTIMIZATION.md +515 -0
- data/docs/SECURITY_COMPLIANCE.md +535 -0
- data/docs/SYSTEM_MAINTENANCE_OPERATIONS.md +520 -0
- data/docs/SYSTEM_MONITORING_HEALTH.md +502 -0
- data/docs/TESTING_QUALITY_ASSURANCE.md +526 -0
- data/docs/WEB_SERVICES_APIS.md +573 -0
- data/lib/grim_reaper/core.rb +130 -0
- data/lib/grim_reaper/go_module.rb +151 -0
- data/lib/grim_reaper/installer.rb +485 -0
- data/lib/grim_reaper/python_module.rb +172 -0
- data/lib/grim_reaper/security_module.rb +180 -0
- data/lib/grim_reaper/shell_module.rb +156 -0
- data/lib/grim_reaper/version.rb +5 -0
- data/lib/grim_reaper.rb +41 -0
- metadata +247 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '090c41a929bdad5181547cb686d91dcd84712e325950975c996b553421eb0c41'
|
4
|
+
data.tar.gz: 8ce9d32a4215f8c094c20ab857156db032f7471799c07eb180cb746df1dc750d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b6dddf348a271e0617405c0e8958af0ebd7c7fe50d0c9432dd4cb4aab73a954169859c1e38d48e2af8717df74cf854292109712ce669e1349e2d6a9da812471e
|
7
|
+
data.tar.gz: c2243469f2b8e321f7dc89a0eb26f26b518a035380948d2739d716c50600324e3279731386951a0d0947299bb65c20bb3e15e07fec810f9ea2829bddb0b9143b
|
data/README.md
ADDED
@@ -0,0 +1,511 @@
|
|
1
|
+
# Grim Reaper 🗡️ Ruby Gem
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/grim-reaper)
|
4
|
+
[](https://rubygems.org/gems/grim-reaper)
|
5
|
+
[](https://grim.so/license)
|
6
|
+
|
7
|
+
**When data death comes knocking, Grim ensures resurrection is just a command away.**
|
8
|
+
|
9
|
+
Enterprise-grade data protection platform with AI-powered backup decisions, military-grade encryption, multi-algorithm compression, content-based deduplication, real-time monitoring, and automated threat response.
|
10
|
+
|
11
|
+
## 🚀 Quick Install
|
12
|
+
|
13
|
+
```bash
|
14
|
+
gem install grim-reaper
|
15
|
+
```
|
16
|
+
|
17
|
+
## 🎯 Quick Start
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
require 'grim_reaper'
|
21
|
+
|
22
|
+
# Initialize Grim Reaper
|
23
|
+
grim = GrimReaper::Core.new
|
24
|
+
|
25
|
+
# Quick backup
|
26
|
+
grim.backup('/important/data')
|
27
|
+
|
28
|
+
# Start monitoring
|
29
|
+
grim.monitor('/var/log')
|
30
|
+
|
31
|
+
# Health check
|
32
|
+
grim.health_check
|
33
|
+
```
|
34
|
+
|
35
|
+
## 📋 Complete Command Reference
|
36
|
+
|
37
|
+
All commands use the unified Grim Reaper command structure:
|
38
|
+
|
39
|
+
### 🤖 AI & Machine Learning
|
40
|
+
|
41
|
+
```bash
|
42
|
+
# AI Decision Engine
|
43
|
+
grim ai-decision init # Initialize AI decision engine
|
44
|
+
grim ai-decision analyze # Analyze files for intelligent backup decisions
|
45
|
+
grim ai-decision backup-priority # Determine backup priorities using AI
|
46
|
+
grim ai-decision storage-optimize # Optimize storage allocation with AI
|
47
|
+
grim ai-decision resource-manage # Manage system resources intelligently
|
48
|
+
grim ai-decision validate # Validate AI models and decisions
|
49
|
+
grim ai-decision report # Generate AI analysis report
|
50
|
+
grim ai-decision config # Configure AI parameters
|
51
|
+
grim ai-decision status # Check AI engine status
|
52
|
+
|
53
|
+
# AI Integration
|
54
|
+
grim ai init # Initialize AI integration framework
|
55
|
+
grim ai install # Install AI dependencies (TensorFlow/PyTorch)
|
56
|
+
grim ai train # Train AI models on your data
|
57
|
+
grim ai predict # Generate predictions from models
|
58
|
+
grim ai analyze # Analyze data patterns
|
59
|
+
grim ai optimize # Optimize AI performance
|
60
|
+
grim ai monitor # Monitor AI operations
|
61
|
+
grim ai validate # Validate model accuracy
|
62
|
+
grim ai report # Generate integration report
|
63
|
+
grim ai config # Configure AI integration
|
64
|
+
grim ai status # Check integration status
|
65
|
+
|
66
|
+
# AI Production Deployment
|
67
|
+
grim ai-deploy deploy # Deploy AI models to production
|
68
|
+
grim ai-deploy test # Run automated deployment tests
|
69
|
+
grim ai-deploy rollback # Rollback to previous version
|
70
|
+
grim ai-deploy monitor # Monitor deployed models
|
71
|
+
grim ai-deploy health # Check deployment health
|
72
|
+
grim ai-deploy backup # Backup current deployment
|
73
|
+
grim ai-deploy restore # Restore from backup
|
74
|
+
grim ai-deploy status # Check deployment status
|
75
|
+
|
76
|
+
# AI Training
|
77
|
+
grim ai-train analyze # Analyze training data
|
78
|
+
grim ai-train train # Train base models
|
79
|
+
grim ai-train predict # Generate predictions
|
80
|
+
grim ai-train cluster # Perform clustering analysis
|
81
|
+
grim ai-train extract # Extract features from data
|
82
|
+
grim ai-train validate # Validate model performance
|
83
|
+
grim ai-train report # Generate training report
|
84
|
+
grim ai-train neural # Train neural networks
|
85
|
+
grim ai-train ensemble # Train ensemble models
|
86
|
+
grim ai-train timeseries # Time series analysis
|
87
|
+
grim ai-train regression # Train regression models
|
88
|
+
grim ai-train classify # Train classification models
|
89
|
+
grim ai-train config # Configure training parameters
|
90
|
+
grim ai-train init # Initialize training environment
|
91
|
+
|
92
|
+
# AI Velocity Enhancement
|
93
|
+
grim ai-turbo turbo # Activate turbo mode for AI
|
94
|
+
grim ai-turbo optimize # Optimize AI performance
|
95
|
+
grim ai-turbo benchmark # Run performance benchmarks
|
96
|
+
grim ai-turbo validate # Validate optimizations
|
97
|
+
grim ai-turbo deploy # Deploy optimized models
|
98
|
+
grim ai-turbo monitor # Monitor performance gains
|
99
|
+
grim ai-turbo report # Generate performance report
|
100
|
+
```
|
101
|
+
|
102
|
+
### 💾 Backup & Recovery
|
103
|
+
|
104
|
+
```bash
|
105
|
+
# Core Backup Operations
|
106
|
+
grim backup create # Create intelligent backup
|
107
|
+
grim backup verify # Verify backup integrity
|
108
|
+
grim backup list # List all backups
|
109
|
+
|
110
|
+
# Core Backup Engine
|
111
|
+
grim backup-core create # Create core backup with progress
|
112
|
+
grim backup-core verify # Verify backup checksums
|
113
|
+
grim backup-core restore # Restore from backup
|
114
|
+
grim backup-core status # Check backup system status
|
115
|
+
grim backup-core init # Initialize backup system
|
116
|
+
|
117
|
+
# Automatic Backup Daemon
|
118
|
+
grim auto-backup start # Start automatic backup daemon
|
119
|
+
grim auto-backup stop # Stop backup daemon
|
120
|
+
grim auto-backup restart # Restart backup daemon
|
121
|
+
grim auto-backup status # Check daemon status
|
122
|
+
grim auto-backup health # Health check with diagnostics
|
123
|
+
|
124
|
+
# Restore Operations
|
125
|
+
grim restore recover # Restore from backup
|
126
|
+
grim restore list # List available restore points
|
127
|
+
grim restore verify # Verify restore integrity
|
128
|
+
|
129
|
+
# Deduplication
|
130
|
+
grim dedup dedup # Deduplicate files
|
131
|
+
grim dedup restore # Restore deduplicated files
|
132
|
+
grim dedup cleanup # Clean orphaned chunks
|
133
|
+
grim dedup stats # Show deduplication statistics
|
134
|
+
grim dedup verify # Verify dedup integrity
|
135
|
+
grim dedup benchmark # Run deduplication benchmarks
|
136
|
+
```
|
137
|
+
|
138
|
+
### 📊 System Monitoring & Health
|
139
|
+
|
140
|
+
```bash
|
141
|
+
# System Monitoring
|
142
|
+
grim monitor start # Start system monitoring
|
143
|
+
grim monitor stop # Stop monitoring
|
144
|
+
grim monitor status # Check monitor status
|
145
|
+
grim monitor show # Show current metrics
|
146
|
+
grim monitor report # Generate monitoring report
|
147
|
+
|
148
|
+
# Health Checking
|
149
|
+
grim health check # Complete health check
|
150
|
+
grim health fix # Auto-fix detected issues
|
151
|
+
grim health report # Generate health report
|
152
|
+
grim health monitor # Continuous health monitoring
|
153
|
+
|
154
|
+
# Enhanced Health Monitoring
|
155
|
+
grim health-check check # Enhanced health check
|
156
|
+
grim health-check services # Check all services
|
157
|
+
grim health-check disk # Check disk health
|
158
|
+
grim health-check memory # Check memory status
|
159
|
+
grim health-check network # Check network health
|
160
|
+
grim health-check fix # Auto-fix all issues
|
161
|
+
grim health-check report # Detailed health report
|
162
|
+
```
|
163
|
+
|
164
|
+
### 🔒 Security & Compliance
|
165
|
+
|
166
|
+
```bash
|
167
|
+
# Security Auditing
|
168
|
+
grim audit full # Complete security audit
|
169
|
+
grim audit permissions # Audit file permissions
|
170
|
+
grim audit compliance # Check compliance (CIS/STIG/NIST)
|
171
|
+
grim audit backups # Audit backup integrity
|
172
|
+
grim audit logs # Audit access logs
|
173
|
+
grim audit config # Audit configuration security
|
174
|
+
grim audit report # Generate audit report
|
175
|
+
|
176
|
+
# Security Operations
|
177
|
+
grim security scan # Run security scan
|
178
|
+
grim security audit # Deep security audit
|
179
|
+
grim security fix # Auto-fix vulnerabilities
|
180
|
+
grim security report # Generate security report
|
181
|
+
grim security monitor # Start security monitoring
|
182
|
+
|
183
|
+
# Security Testing
|
184
|
+
grim security-testing vulnerability # Run vulnerability tests
|
185
|
+
grim security-testing penetration # Run penetration tests
|
186
|
+
grim security-testing compliance # Test compliance standards
|
187
|
+
grim security-testing report # Generate test report
|
188
|
+
|
189
|
+
# File Encryption
|
190
|
+
grim encrypt encrypt # Encrypt files
|
191
|
+
grim encrypt decrypt # Decrypt files
|
192
|
+
grim encrypt key-gen # Generate encryption keys
|
193
|
+
grim encrypt verify # Verify encryption
|
194
|
+
|
195
|
+
# File Verification
|
196
|
+
grim verify integrity # Verify file integrity
|
197
|
+
grim verify checksum # Verify checksums
|
198
|
+
grim verify signature # Verify digital signatures
|
199
|
+
grim verify backup # Verify backup integrity
|
200
|
+
|
201
|
+
# Multi-Language Scanner
|
202
|
+
grim scanner scan # Multi-threaded file system scan
|
203
|
+
grim scanner info # Get file information and summary
|
204
|
+
grim scanner hash # Calculate file hashes (MD5/SHA256)
|
205
|
+
grim scanner py-scan # Python-based security scanning
|
206
|
+
grim scanner security # Security vulnerability scan
|
207
|
+
grim scanner malware # Malware detection scan
|
208
|
+
grim scanner vulnerability # Deep vulnerability scan
|
209
|
+
grim scanner compliance # Compliance verification scan
|
210
|
+
grim scanner report # Generate scan report
|
211
|
+
```
|
212
|
+
|
213
|
+
### 🚀 Performance & Optimization
|
214
|
+
|
215
|
+
```bash
|
216
|
+
# High-Performance Compression
|
217
|
+
grim compression compress # Compress with Go binary (8 algorithms)
|
218
|
+
grim compression decompress # Decompress files
|
219
|
+
grim compression benchmark # Run compression benchmarks
|
220
|
+
grim compression optimize # Optimize compression
|
221
|
+
grim compression analyze # Analyze compression potential
|
222
|
+
grim compression list # List compressed files
|
223
|
+
grim compression cleanup # Clean temporary files
|
224
|
+
|
225
|
+
# System Optimization
|
226
|
+
grim blacksmith optimize # System-wide optimization
|
227
|
+
grim blacksmith maintain # Run maintenance tasks
|
228
|
+
grim blacksmith forge # Create new tools
|
229
|
+
grim blacksmith list-tools # List available tools
|
230
|
+
grim blacksmith run-tool # Run specific tool
|
231
|
+
grim blacksmith schedule # Schedule maintenance
|
232
|
+
grim blacksmith list-scheduled # List scheduled tasks
|
233
|
+
grim blacksmith backup-tools # Backup custom tools
|
234
|
+
grim blacksmith restore-tools # Restore tools
|
235
|
+
grim blacksmith update-tools # Update all tools
|
236
|
+
grim blacksmith stats # Show forge statistics
|
237
|
+
grim blacksmith config # Configure forge
|
238
|
+
|
239
|
+
# Performance Testing
|
240
|
+
grim performance-test cpu # Test CPU performance
|
241
|
+
grim performance-test memory # Test memory performance
|
242
|
+
grim performance-test disk # Test disk I/O
|
243
|
+
grim performance-test network # Test network throughput
|
244
|
+
grim performance-test full # Run all performance tests
|
245
|
+
grim performance-test report # Generate performance report
|
246
|
+
|
247
|
+
# System Cleanup
|
248
|
+
grim cleanup all # Clean everything safely
|
249
|
+
grim cleanup backups # Clean old backups
|
250
|
+
grim cleanup temp # Clean temporary files
|
251
|
+
grim cleanup logs # Clean old logs
|
252
|
+
grim cleanup database # Clean database
|
253
|
+
grim cleanup duplicates # Remove duplicate files
|
254
|
+
grim cleanup report # Preview cleanup actions
|
255
|
+
```
|
256
|
+
|
257
|
+
### 🌐 Web Services & APIs
|
258
|
+
|
259
|
+
```bash
|
260
|
+
# Web Services
|
261
|
+
grim web start # Start FastAPI web server
|
262
|
+
grim web stop # Stop all web services
|
263
|
+
grim web restart # Restart web server
|
264
|
+
grim web gateway # Start API gateway with load balancing
|
265
|
+
grim web api # Start API application
|
266
|
+
grim web status # Show web services status
|
267
|
+
|
268
|
+
# Monitoring Dashboard
|
269
|
+
grim dashboard start # Start web dashboard
|
270
|
+
grim dashboard stop # Stop dashboard
|
271
|
+
grim dashboard restart # Restart dashboard
|
272
|
+
grim dashboard status # Check dashboard status
|
273
|
+
grim dashboard config # Configure dashboard
|
274
|
+
grim dashboard init # Initialize dashboard
|
275
|
+
grim dashboard setup # Run setup wizard
|
276
|
+
grim dashboard logs # View dashboard logs
|
277
|
+
|
278
|
+
# API Gateway
|
279
|
+
grim gateway start # Start API gateway
|
280
|
+
grim gateway stop # Stop gateway
|
281
|
+
grim gateway status # Gateway status
|
282
|
+
grim gateway config # Configure gateway
|
283
|
+
```
|
284
|
+
|
285
|
+
### ☁️ Cloud & Distributed Systems
|
286
|
+
|
287
|
+
```bash
|
288
|
+
# Cloud Platform Integration
|
289
|
+
grim cloud init # Initialize cloud platform
|
290
|
+
grim cloud aws # Deploy to AWS
|
291
|
+
grim cloud azure # Deploy to Azure
|
292
|
+
grim cloud gcp # Deploy to Google Cloud
|
293
|
+
grim cloud serverless # Deploy serverless functions
|
294
|
+
grim cloud comprehensive # Full cloud deployment
|
295
|
+
|
296
|
+
# Distributed Architecture
|
297
|
+
grim distributed init # Initialize distributed system
|
298
|
+
grim distributed deploy # Deploy microservices
|
299
|
+
grim distributed scale # Scale services
|
300
|
+
grim distributed balance # Configure load balancing
|
301
|
+
grim distributed monitor # Monitor distributed system
|
302
|
+
|
303
|
+
# Load Balancing
|
304
|
+
grim load-balancer start # Start load balancer
|
305
|
+
grim load-balancer stop # Stop load balancer
|
306
|
+
grim load-balancer status # Check balancer status
|
307
|
+
grim load-balancer add-server # Add backend server
|
308
|
+
grim load-balancer remove-server # Remove backend server
|
309
|
+
|
310
|
+
# File Transfer (Multi-Protocol)
|
311
|
+
grim transfer upload # Upload files to destination
|
312
|
+
grim transfer download # Download files from source
|
313
|
+
grim transfer resume # Resume interrupted transfer
|
314
|
+
grim transfer verify # Verify transfer integrity
|
315
|
+
```
|
316
|
+
|
317
|
+
### 🧪 Testing & Quality Assurance
|
318
|
+
|
319
|
+
```bash
|
320
|
+
# Testing Framework
|
321
|
+
grim testing run # Run all tests
|
322
|
+
grim testing benchmark # Run benchmarks
|
323
|
+
grim testing ci # CI/CD test suite
|
324
|
+
grim testing report # Generate test report
|
325
|
+
|
326
|
+
# Quality Assurance
|
327
|
+
grim qa code-review # Automated code review
|
328
|
+
grim qa static-analysis # Static code analysis
|
329
|
+
grim qa security-scan # Security scanning
|
330
|
+
grim qa performance-test # Performance testing
|
331
|
+
grim qa integration-test # Integration testing
|
332
|
+
grim qa report # Generate QA report
|
333
|
+
|
334
|
+
# User Acceptance Testing
|
335
|
+
grim user-acceptance run # Run acceptance tests
|
336
|
+
grim user-acceptance generate # Generate test scenarios
|
337
|
+
grim user-acceptance validate # Validate user workflows
|
338
|
+
grim user-acceptance report # Generate UAT report
|
339
|
+
```
|
340
|
+
|
341
|
+
### 🔧 System Maintenance & Operations
|
342
|
+
|
343
|
+
```bash
|
344
|
+
# Central Orchestrator (Scythe)
|
345
|
+
grim scythe harvest # Orchestrate all operations
|
346
|
+
grim scythe analyze # Analyze system state
|
347
|
+
grim scythe report # Generate master report
|
348
|
+
grim scythe monitor # Monitor all operations
|
349
|
+
grim scythe status # Show orchestrator status
|
350
|
+
grim scythe backup # Orchestrated backup operations
|
351
|
+
|
352
|
+
# Logging System
|
353
|
+
grim log init # Initialize logging system
|
354
|
+
grim log setup # Setup logger configuration
|
355
|
+
grim log event # Log structured event
|
356
|
+
grim log metric # Log performance metric
|
357
|
+
grim log rotate # Rotate log files
|
358
|
+
grim log cleanup # Clean up old log files
|
359
|
+
grim log status # Show logging system status
|
360
|
+
grim log tail # Tail log file
|
361
|
+
|
362
|
+
# Configuration Management
|
363
|
+
grim config load # Load configuration
|
364
|
+
grim config save # Save configuration
|
365
|
+
grim config get # Get configuration value
|
366
|
+
grim config set # Set configuration value
|
367
|
+
grim config validate # Validate configuration
|
368
|
+
```
|
369
|
+
|
370
|
+
## 💎 Ruby-Specific Integration
|
371
|
+
|
372
|
+
### Rails Integration
|
373
|
+
|
374
|
+
```ruby
|
375
|
+
# Gemfile
|
376
|
+
gem 'grim-reaper'
|
377
|
+
|
378
|
+
# config/initializers/grim.rb
|
379
|
+
Rails.application.config.grim = GrimReaper::Core.new(
|
380
|
+
config_path: Rails.root.join('config/grim.yml'),
|
381
|
+
backup_path: Rails.root.join('backups'),
|
382
|
+
log_level: Rails.env.production? ? :info : :debug
|
383
|
+
)
|
384
|
+
|
385
|
+
# Automatic backup of Rails app
|
386
|
+
Rails.application.config.grim.auto_backup(Rails.root, schedule: :daily)
|
387
|
+
|
388
|
+
# Monitor Rails logs
|
389
|
+
Rails.application.config.grim.monitor(Rails.root.join('log'))
|
390
|
+
```
|
391
|
+
|
392
|
+
### Ruby Code Examples
|
393
|
+
|
394
|
+
```ruby
|
395
|
+
require 'grim_reaper'
|
396
|
+
|
397
|
+
# Initialize with custom configuration
|
398
|
+
grim = GrimReaper::Core.new(
|
399
|
+
backup_path: '/opt/backups',
|
400
|
+
compression: 'zstd',
|
401
|
+
encryption: true
|
402
|
+
)
|
403
|
+
|
404
|
+
# Backup with Ruby-specific options
|
405
|
+
grim.backup('/var/www/ruby_app') do |backup|
|
406
|
+
backup.exclude_patterns = %w[tmp/ log/ node_modules/]
|
407
|
+
backup.include_gems = true
|
408
|
+
backup.ruby_version_info = true
|
409
|
+
end
|
410
|
+
|
411
|
+
# Monitor Ruby application
|
412
|
+
grim.monitor('/var/www/ruby_app') do |monitor|
|
413
|
+
monitor.watch_gemfile = true
|
414
|
+
monitor.ruby_processes = true
|
415
|
+
monitor.rails_logs = true if defined?(Rails)
|
416
|
+
end
|
417
|
+
|
418
|
+
# Compress Ruby source files
|
419
|
+
grim.compress('/app/source', algorithm: 'zstd') do |compress|
|
420
|
+
compress.ruby_syntax_check = true
|
421
|
+
compress.preserve_permissions = true
|
422
|
+
end
|
423
|
+
|
424
|
+
# Health check with Ruby-specific checks
|
425
|
+
health = grim.health_check do |check|
|
426
|
+
check.ruby_version = true
|
427
|
+
check.gem_dependencies = true
|
428
|
+
check.bundler_status = true
|
429
|
+
check.rails_environment = true if defined?(Rails)
|
430
|
+
end
|
431
|
+
|
432
|
+
puts "System Health: #{health.status}"
|
433
|
+
puts "Ruby Version: #{health.ruby_version}"
|
434
|
+
puts "Gems Status: #{health.gems_status}"
|
435
|
+
```
|
436
|
+
|
437
|
+
### Rake Tasks
|
438
|
+
|
439
|
+
```ruby
|
440
|
+
# lib/tasks/grim.rake
|
441
|
+
namespace :grim do
|
442
|
+
desc "Backup Rails application"
|
443
|
+
task backup: :environment do
|
444
|
+
GrimReaper::Core.new.backup(Rails.root)
|
445
|
+
end
|
446
|
+
|
447
|
+
desc "Start monitoring Rails application"
|
448
|
+
task monitor: :environment do
|
449
|
+
GrimReaper::Core.new.monitor(Rails.root)
|
450
|
+
end
|
451
|
+
|
452
|
+
desc "Run health check"
|
453
|
+
task health: :environment do
|
454
|
+
health = GrimReaper::Core.new.health_check
|
455
|
+
puts "Status: #{health.overall_status}"
|
456
|
+
end
|
457
|
+
|
458
|
+
desc "Optimize Rails application"
|
459
|
+
task optimize: :environment do
|
460
|
+
GrimReaper::Core.new.optimize(Rails.root)
|
461
|
+
end
|
462
|
+
end
|
463
|
+
```
|
464
|
+
|
465
|
+
### RSpec Integration
|
466
|
+
|
467
|
+
```ruby
|
468
|
+
# spec/spec_helper.rb
|
469
|
+
require 'grim_reaper/rspec'
|
470
|
+
|
471
|
+
RSpec.configure do |config|
|
472
|
+
config.include GrimReaper::RSpec::Helpers
|
473
|
+
|
474
|
+
# Backup test database before each test
|
475
|
+
config.before(:each) do
|
476
|
+
grim_backup_test_data if example.metadata[:backup_data]
|
477
|
+
end
|
478
|
+
|
479
|
+
# Clean up test artifacts
|
480
|
+
config.after(:suite) do
|
481
|
+
grim_cleanup_test_artifacts
|
482
|
+
end
|
483
|
+
end
|
484
|
+
|
485
|
+
# In your specs
|
486
|
+
RSpec.describe MyController, :backup_data do
|
487
|
+
it "processes data safely" do
|
488
|
+
# Your test code here
|
489
|
+
# Test data will be automatically backed up
|
490
|
+
end
|
491
|
+
end
|
492
|
+
```
|
493
|
+
|
494
|
+
## 🔗 Links & Resources
|
495
|
+
|
496
|
+
- **Website**: [grim.so](https://grim.so)
|
497
|
+
- **GitHub**: [github.com/cyber-boost/grim](https://github.com/cyber-boost/grim)
|
498
|
+
- **Download**: [get.grim.so](https://get.grim.so)
|
499
|
+
- **RubyGems**: [rubygems.org/gems/grim-reaper](https://rubygems.org/gems/grim-reaper)
|
500
|
+
- **Documentation**: [grim.so/docs](https://grim.so/docs)
|
501
|
+
|
502
|
+
## 📄 License
|
503
|
+
|
504
|
+
By using this software you agree to the official license available at https://grim.so/license
|
505
|
+
|
506
|
+
---
|
507
|
+
|
508
|
+
<div align="center">
|
509
|
+
<strong>🗡️ GRIM REAPER</strong><br>
|
510
|
+
<i>"When data death comes knocking, resurrection is just a command away"</i>
|
511
|
+
</div>
|