1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/Gemfile

34 lines
599 B
Text
Raw Permalink Normal View History

source "https://rubygems.org"
2012-01-16 19:25:20 -08:00
gemspec
gem "rake"
2022-10-10 17:08:30 +01:00
RAILS_VERSION = "~> 7.0.4"
gem "actionmailer", RAILS_VERSION
gem "actionpack", RAILS_VERSION
gem "activejob", RAILS_VERSION
gem "activerecord", RAILS_VERSION
gem "railties", RAILS_VERSION
gem "redis-client"
# gem "debug"
2022-01-05 20:59:37 -08:00
2019-04-01 09:43:34 -07:00
gem "sqlite3", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
gem "after_commit_everywhere"
gem "yard"
group :test do
2022-11-01 12:17:13 -07:00
gem "maxitest"
2022-09-01 15:47:24 -07:00
gem "simplecov"
end
group :development, :test do
gem "standard", require: false
2022-09-01 15:47:24 -07:00
gem "pry"
end
group :load_test do
2022-09-01 19:14:56 -07:00
gem "toxiproxy"
2022-09-01 19:22:46 -07:00
gem "ruby-prof"
end