mirror of
https://github.com/ditkrg/outboxable.git
synced 2026-01-22 13:56:49 +00:00
20 lines
344 B
Ruby
20 lines
344 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
# Specify your gem's dependencies in outboxable.gemspec
|
|
gemspec
|
|
|
|
gem 'rake', '~> 13.0'
|
|
|
|
gem 'rspec', '~> 3.0'
|
|
|
|
gem 'rubocop-rails', '~> 2.18'
|
|
|
|
group :development, :test do
|
|
gem "sidekiq", "~> 7.0", require: true
|
|
gem "sidekiq-cron", "~> 1.10"
|
|
gem "activesupport", "~> 7.0"
|
|
end
|
|
|