forked from ddnexus/pagy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (44 loc) · 1.01 KB
/
Gemfile
File metadata and controls
50 lines (44 loc) · 1.01 KB
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
44
45
46
47
48
49
50
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec path: './gem'
gem 'rake'
group :development, :test do
gem 'activesupport'
gem 'childprocess'
gem 'debug'
gem 'ferrum'
gem 'http' # used by the scripts/contributor-list.rb
gem 'i18n'
gem 'irb'
gem 'minitest'
gem 'minitest-holdify'
gem 'minitest-hooks'
gem 'minitest-mock'
gem 'minitest-reporters', git: 'https://github.com/minitest-reporters/minitest-reporters', branch: 'master'
gem 'oj', require: false # false is for testing with or without it
gem 'rack'
gem 'rails-i18n'
gem 'rbs'
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-packaging'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-thread_safety'
gem 'simplecov', require: false
end
group :playground do
gem 'groupdate'
gem 'puma'
gem 'rackup'
gem 'rails', '~> 8.0'
gem 'rouge'
gem 'sequel'
gem 'sinatra'
gem 'sqlite3'
end
group :performance do
# gem 'benchmark-ips'
# gem 'kalibera'
# gem 'memory_profiler'
end