forked from simplecov-ruby/simplecov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
34 lines (27 loc) · 783 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
28
29
30
31
32
33
34
# frozen_string_literal: true
source "https://rubygems.org"
# Uncomment this to use local copy of simplecov-html in development when checked out
# gem "simplecov-html", path: File.join(__dir__, "../simplecov-html")
# Uncomment this to use development version of html formatter from github
# gem "simplecov-html", github: "simplecov-ruby/simplecov-html"
gem "matrix"
group :development do
gem "apparition", github: "twalpole/apparition"
gem "activesupport", "~> 6.1"
gem "aruba"
gem "capybara"
gem "rackup"
gem "cucumber"
gem "minitest"
gem "rake"
gem "rspec"
gem "pry"
gem "rubocop"
gem "test-unit"
# Explicitly add webrick because it has been removed from stdlib in Ruby 3.0
gem "webrick"
end
group :benchmark do
gem "benchmark-ips"
end
gemspec