-
Notifications
You must be signed in to change notification settings - Fork 416
/
Gemfile
43 lines (37 loc) · 795 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
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec path: './gem'
gem 'http' # used by the scripts/contributor-list.rb
gem 'rake'
group :test do
gem 'activesupport'
gem 'i18n'
gem 'minitest'
gem 'minitest-reporters'
gem 'mutex_m'
gem 'oj', require: false # false is for testing with or without it
gem 'rack'
gem 'rematch'
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-packaging'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'simplecov', require: false
end
group :playground do
gem 'groupdate'
gem 'puma'
gem 'rackup'
gem 'rails', '~> 8.0'
gem 'rerun'
gem 'rouge'
gem 'sequel'
gem 'sinatra'
gem 'sqlite3'
end
# group :performance do
# gem 'benchmark-ips'
# gem 'kalibera'
# gem 'memory_profiler'
# end