-
Notifications
You must be signed in to change notification settings - Fork 191
/
Gemfile
92 lines (68 loc) · 2.04 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.1.0'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 7.0.2', '>= 7.0.2.3'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# For rendering json,
# TODO: turbostreamer replace this with https://github.com/thoughtbot/props_template
# pros_template has simple syntax and slightly faster than turbostreamer
gem 'turbostreamer', '= 1.9'
gem 'graphql', '= 1.11.4'
gem 'graphql-schema_comparator'
#gem 'graphql-playground', github: 'naveed-ahmad/graphql-playground-rails'
#gem 'cld3', '= 3.4.4'
gem 'cld3', '= 3.4.3'
# Elasticsearch
gem 'elastic-transport'
gem 'elasticsearch-model'#, '~> 7.2.0'
gem 'typhoeus'
# Paging the results
gem 'pagy'
gem 'oj'
gem 'oj_mimic_json'
gem 'rails-html-sanitizer', '>= 1.4.4'
# This is to run the rake task for importing in parallel
# Will provide a progress bar as the import happens
gem 'parallel', require: false
# use puma server
gem 'puma', '~> 4.3', '>= 4.3.12'
# enable cors
gem 'rack-cors'
# compresses Rack responses using Google's Brotli compression algorithm
gem 'rack-brotli'
gem 'tzinfo-data'
# Exception tracking
gem 'sentry-raven', group: [:production]
gem 'countries', '= 6.0.1'
group :development, :test do
gem 'pry-rails'
gem 'apollo-tracing'
gem 'solargraph'
end
group :development do
gem 'byebug', platform: :mri
gem 'ruby-progressbar'
gem 'benchmark-ips', require: false
gem 'bullet'
gem 'derailed_benchmarks'
# run some pre commit hooks
gem 'pre-commit', require: false
gem 'rubocop', '>= 1.7.0', require: false
# https://github.com/tmm1/stackprof
# sampling call-stack profiler for ruby
gem 'stackprof'
# Annotate modes with columns
gem 'annotate'
end
group :test, :development do
gem 'rspec-rails', '= 5.0.2'
gem 'shoulda-matchers', '~> 5.1.0'
gem 'simplecov', require: false
gem 'factory_bot_rails', '>= 6.2.0'
gem 'rubocop-rails_config', '>= 1.9.1'
gem 'rubocop-rspec', '>= 2.1.0'
gem 'json-schema-rspec'
end
gem "kredis", "~> 1.3"