-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
27 lines (24 loc) · 910 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in testcontainers.gemspec
gemspec
gem "testcontainers-core", path: "./core"
gem "testcontainers-mysql", path: "./mysql"
gem "testcontainers-redis", path: "./redis"
gem "testcontainers-postgres", path: "./postgres"
gem "testcontainers-nginx", path: "./nginx"
gem "testcontainers-elasticsearch", path: "./elasticsearch"
gem "testcontainers-mariadb", path: "./mariadb"
gem "testcontainers-mongo", path: "./mongo"
gem "testcontainers-redpanda", path: "./redpanda"
gem "testcontainers-rabbitmq", path: "./rabbitmq"
gem "testcontainers-selenium", path: "./selenium"
gem "testcontainers-compose", path: "./compose"
gem "mysql2", "~> 0.5.3"
gem "pg", "~> 1.5"
gem "redis", "~> 5.0"
gem "elasticsearch", "~> 8.7"
gem "mongo", "~> 2.2"
gem "rdkafka", "~> 0.12"
gem "bunny", ">= 2.19.0"
gem "selenium-webdriver", "~> 4.1.0"