forked from ddnexus/pagy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (35 loc) · 850 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
# frozen_string_literal: true
source 'https://rubygems.org'
# we cannot use gemspec here because it would load pagy before simplecov so missing files from coverage
# gemspec
gem 'i18n'
gem 'oj', require: false # false is for testing with or without it
gem 'rack'
gem 'rake'
gem 'rake-manifest'
gem 'rerun'
gem 'solargraph' # run bundle exec yard gems to index installed and cached gems
group :test do
gem 'codecov', require: false
gem 'minitest'
gem 'minitest-reporters'
gem 'rematch'
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-packaging'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'simplecov', require: false
end
group :apps do
gem 'puma'
gem 'sinatra'
gem 'sinatra-contrib'
# gem 'slim'
# gem 'haml'
end
group :performance do
gem 'benchmark-ips'
gem 'kalibera'
gem 'memory_profiler'
end