mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-22 13:56:49 +00:00
17 lines
338 B
Ruby
17 lines
338 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
# Specify your gem's dependencies in outboxable.gemspec
|
|
gemspec
|
|
|
|
gem 'rake', '~> 13.3.1'
|
|
gem 'rspec', '~> 3.13.2'
|
|
gem 'rubocop-rails', '~> 2.34.3'
|
|
|
|
group :development, :test do
|
|
gem 'activesupport', '~> 8.1.2'
|
|
gem 'sidekiq', '~> 8.1.0'
|
|
gem 'sidekiq-cron', '~> 2.3.1'
|
|
end
|