-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
119 lines (91 loc) · 3.34 KB
/
Gemfile
File metadata and controls
119 lines (91 loc) · 3.34 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 7.0.4'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# A Ruby implementation of GraphQL.
# https://github.com/rmosolgo/graphql-ruby
gem 'graphql'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
# https://github.com/dry-rb/dry-validation
# Validation library with type-safe schemas and rules https://dry-rb.org/gems/dry-validation
gem 'dry-validation'
# Application server
# https://github.com/puma/puma
gem 'puma', '~> 5.6'
# A Ruby interface to the PostgreSQL RDBMS.
# https://github.com/ged/ruby-pg
gem 'pg'
# A fast JSON parser and Object marshaller as a Ruby gem.
# https://github.com/ohler55/oj
gem 'oj'
# File Attachment toolkit for Ruby applications.
# https://github.com/shrinerb/shrine
gem 'shrine', '>= 3.3'
# Catch unsafe migrations in development
# https://github.com/ankane/strong_migrations
gem 'strong_migrations'
# Rack middleware for blocking & throttling
# https://github.com/kickstarter/rack-attack
gem 'rack-attack'
# Rack Middleware for handling Cross-Origin Resource Sharing (CORS), which makes cross-origin AJAX possible.
# https://github.com/cyu/rack-cors
gem 'rack-cors', '>= 1.0.6', require: 'rack/cors'
# Abort requests that are taking too long
# https://github.com/sharpstone/rack-timeout
gem 'rack-timeout'
# Exception tracking and logging from Ruby to Rollbar https://docs.rollbar.com/docs/ruby
# https://github.com/rollbar/rollbar-gem
gem 'rollbar'
# Interactors are used to encapsulate your application's business logic.
# https://github.com/collectiveidea/interactor
gem 'interactor'
group :development, :test do
# Help to kill N+1 queries and unused eager loading
# https://github.com/flyerhzm/bullet
gem 'bullet'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
# Shim to load environment variables from .env into ENV in development.
# https://github.com/bkeepers/dotenv
gem 'dotenv-rails'
# Remote debug
gem 'debase', '~> 0.2.5.beta2'
gem 'ruby-debug-ide', '~> 0.7.2'
end
# Static code analyzer and formatter. Keep your code clean.
gem 'rubocop', require: false
gem 'rubocop-graphql', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
group :development do
# Static analysis tool which checks Ruby on Rails applications for security vulnerabilities.
# https://github.com/presidentbeef/brakeman
gem 'brakeman'
gem 'listen', '~> 3.3'
gem 'graphiql-rails'
gem 'pry-rails'
# Provide a quality report of your Ruby code.
# https://github.com/whitesmith/rubycritic
gem 'rubycritic', require: false
end
group :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-parameterized', require: false
gem 'rspec-rails'
gem 'rspec-sqlimit'
gem 'rspec_junit_formatter'
gem 'shoulda-matchers', '>= 4.0.0'
gem 'simplecov'
# Ruby Tests Profiling Toolbox
# https://github.com/palkan/test-prof
gem 'test-prof'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]