-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
53 lines (49 loc) · 1.64 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", "~> 7.1", ">= 7.1.3"
gem 'dotenv'
gem "dalli", "~> 2.7.6"
gem 'lograge', '~> 0.5'
gem "sentry-raven", "~> 3.1", ">= 3.1.2"
gem 'active_model_serializers', '~> 0.10.0'
gem 'jsonapi-serializer', '~> 2.2'
gem 'kaminari', '~> 1.2'
gem 'elasticsearch', '~> 1.1', '>= 1.1.3'
gem 'elasticsearch-model', '~> 0.1.9', require: 'elasticsearch/model'
gem 'elasticsearch-persistence', '~> 0.1.9', require: 'elasticsearch/persistence/model'
gem 'elasticsearch-rails', '~> 0.1.9'
gem "maremma", "~> 5.0"
gem 'bootsnap', '>= 1.1.0', require: false
gem 'rack-cors', '~> 1.0', :require => 'rack/cors'
gem 'git', '~> 1.5'
gem 'graphql', '~> 1.9', '>= 1.9.4'
gem 'graphql-errors', '~> 0.3.0'
gem 'graphql-batch', '~> 0.4.0'
gem 'batch-loader', '~> 1.4', '>= 1.4.1'
gem 'graphql-cache', '~> 0.6.0', git: "https://github.com/stackshareio/graphql-cache"
gem 'apollo-federation', '~> 1.0'
gem 'google-protobuf', '~> 3.0'
group :development, :test do
gem 'rspec-rails', '~> 3.8', '>= 3.8.2'
gem 'rubocop', '~> 1.3', require: false
gem 'rubocop-performance', '~> 1.2', require: false
gem "better_errors"
gem "binding_of_caller"
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'listen', '~> 3.9'
gem 'spring', '~> 4.1', '>= 4.1.3'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.1'
# gem 'httplog', '~> 1.0'
end
group :test do
gem 'capybara'
gem 'webmock', '~> 3.1'
gem 'vcr', '~> 6.1'
gem 'codeclimate-test-reporter', '~> 1.0.0'
gem 'simplecov'
gem 'shoulda-matchers', '~> 3.1'
gem 'elasticsearch-extensions'
end