Gems
A Rails engine for queueing and managing maintenance tasks for data migrations and backfills.
The generator creates and runs a migration to add the necessary table to your database. It also mounts Maintenance Tasks in your config/routes.rb. By default the web UI can be accessed in the new /maintenance_tasks path.In case you use an exceptio...
Ruby xlsx reader to parse cell values into plain ruby primitives and dates/times.
A fast xlsx reader for Ruby that parses xlsx cell values into plain ruby primitives and dates/times.This is not a rewrite of excel in Ruby. Font styles, for example, are parsed to determine whether a cell is a number or a date, then forgotten. We ...
This PR replaces the current implementation of MJIT with a new JIT called "RJIT" 2.
This PR replaces the current implementation of MJIT with a new JIT called "RJIT" 2.RJIT uses a pure-Ruby assembler to generate native codeMJIT requires a C compiler at runtime. YJIT requires a Rust compiler at build time. RJIT doesn't require them...
An authentication system generator for Rails applications.
Since Authentication Zero generates this code into your application instead of building these modules into the gem itself, you now have complete freedom to modify the authentication system, so it works best with your use case. The one caveat with ...