This file provides guidance to AI coding agents when working with code in this repository.
bigrails-redis is a Redis connection manager for Rails applications that need to manage multiple named Redis connections. It supports connection pooling via connection_pool.
bundle install
# Run all tests (RSpec)
bundle exec rspec
# Run a single spec file
bundle exec rspec spec/path/to/spec.rb
# Lint (uses StandardRB, not RuboCop)
bundle exec standardrb
bundle exec standardrb --fix # auto-correctlib/bigrails/redis.rb— entry point; providesBigRails::Redisconfiguration DSLlib/bigrails/redis/— connection registry, per-connection config objects, and Rails railtie for auto-configuration fromconfig/redis.rbspec/— RSpec tests