mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-22 22:06:47 +00:00
17 lines
327 B
Ruby
17 lines
327 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
# Specify your gem's dependencies in outboxable.gemspec
|
|
gemspec
|
|
|
|
gem 'rake', '~> 13.1'
|
|
gem 'rspec', '~> 3.12'
|
|
gem 'rubocop-rails', '~> 2.22'
|
|
|
|
group :development, :test do
|
|
gem 'activesupport', '~> 7.1'
|
|
gem 'sidekiq', '~> 7.2'
|
|
gem 'sidekiq-cron', '~> 1.11'
|
|
end
|