-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (63 loc) · 1.67 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'action_policy'
gem 'action_policy-graphql'
gem 'activerecord_where_assoc'
gem 'appsignal'
gem 'bootsnap', require: false
gem 'clearance'
gem 'doorkeeper'
gem 'dry-effects'
gem 'globalid'
gem 'graphql'
gem 'graphql-connections'
gem 'graphql-extras'
gem 'graphql_playground-rails'
gem 'graphql-rails_logger'
gem 'importmap-rails'
gem 'jbuilder'
gem 'mailersend-ruby'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'
gem 'rails', '>= 7.0.4.3'
gem 'redis', '~> 4.0'
gem 'rest-client'
gem 'rspec_api_documentation'
gem 'search_object_graphql'
gem 'sidekiq', '~> 7.0'
gem 'sprockets-rails'
gem 'state_machines-activerecord'
gem 'stimulus-rails'
gem 'turbo-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'debug', platforms: %i[mri mingw x64_mingw] # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'dotenv-rails'
gem 'fabrication'
gem 'faker'
gem 'pry-rails'
gem 'rspec'
gem 'rspec-rails'
gem 'simplecov'
end
group :development do
gem 'annotate'
gem 'brakeman'
gem 'bundler-audit'
gem 'graphiql-rails'
gem 'rubocop'
gem 'rubocop-graphql'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'web-console' # Use console on exceptions pages [https://github.com/rails/web-console]
end
group :test do # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'webmock'
end