1268889a78
- Implement EloCalculator service for 2v2 Euchre matches - Create background job processing with GoodJob - Add single match entry form - Add CSV upload for batch match entry - Create player rankings view - Add database schema for matches and elo snapshots
7 lines
133 B
Ruby
7 lines
133 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "active_job"
|
|
|
|
# Configure Active Job to use GoodJob
|
|
ActiveJob::Base.queue_adapter = :good_job
|