-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
26 lines (21 loc) · 919 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
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in capybara-lockstep.gemspec
gemspec
gem 'activesupport', '~> 6.0'
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
gem "rspec-wait", '~> 0.0.10' # we test with Ruby 2.x, and 1.0.0 requires 3.x
gem 'sinatra'
gem 'thin' # ruby 3 does not include a webserver
gem 'puma'
gem 'byebug'
gem 'gemika', '>= 0.8.1'
gem 'capybara', '>= 3'
gem 'selenium-webdriver', '>= 4'
# The following gems were previously "default gems" (always available) and are now
# "bundled gems" (need to be explicitly required). Not all gems in our Gemfile.lock (dev only) do that yet.
# To avoid splitting the Gemfile.lock by Ruby version (gemika test setup), we instead require those
# indirect dependencies ourselves.
gem 'base64' # needed by selenium-webdriver (and potentially others)
gem 'bigdecimal' # needed by activesupport (and potentially others)