-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathGemfile
More file actions
26 lines (22 loc) · 675 Bytes
/
Gemfile
File metadata and controls
26 lines (22 loc) · 675 Bytes
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"
gem "allure-cucumber", path: "allure-cucumber"
gem "allure-rspec", path: "allure-rspec"
gem "allure-ruby-commons", path: "allure-ruby-commons"
group :development do
gem "colorize", "~> 1.1.0"
gem "debug", "~> 1.8"
gem "rake", "~> 13.2.1"
gem "ruby-lsp", "~> 0.23.9"
gem "semver2", "~> 3.4"
gem "solargraph", "~> 0.51.2"
end
group :test do
gem "climate_control", "~> 1.2.0"
gem "oj", "~> 3.14" if ENV["WITH_OJ_GEM"] == "true"
gem "rspec", "~> 3.13.0"
gem "rubocop", "~> 1.71.1"
gem "rubocop-performance", "~> 1.23.0"
gem "simplecov", "~> 0.22.0"
gem "simplecov-console", "~> 0.9.1"
end