File: Gemfile

package info (click to toggle)
ruby-redis-client 0.22.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224 kB
  • sloc: ruby: 2,079; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 411 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

source "https://rubygems.org"

# Specify your gem's dependencies in redis-client.gemspec
gemspec name: "redis-client"

gem "minitest"
gem "rake", "~> 13.2"
gem "rake-compiler"
gem "rubocop"
gem "rubocop-minitest"
gem "toxiproxy"

group :benchmark do
  gem "benchmark-ips"
  gem "hiredis"
  gem "redis", "~> 4.6"
  gem "stackprof", platform: :mri
end

gem "byebug", platform: :mri