forked from simplecov-ruby/simplecov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (24 loc) · 761 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
# 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.dirname(__FILE__) + "/../simplecov-html"
# Uncomment this to use development version of html formatter from github
# gem "simplecov-html", github: "simplecov-ruby/simplecov-html"
group :development do
gem "apparition", "~> 0.6.0"
gem "aruba", "~> 1.0"
gem "capybara", "~> 3.31"
gem "cucumber", "~> 4.0"
gem "minitest"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.2"
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