-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
77 lines (59 loc) · 2.59 KB
/
Gemfile
File metadata and controls
77 lines (59 loc) · 2.59 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: '.ruby-version'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.1.3'
# Use Puma as the app server
gem 'puma', '~> 8.0.1'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
gem 'bcrypt', '~> 3.1.22'
# Use MySQL as the database for Active Record
gem 'mysql2', '~> 0.5.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '~> 1.24.1', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
# JSON web tokens
gem 'jwt', '~> 3.1.2'
# Active model serializers
gem 'active_model_serializers', '~> 0.10.14'
# pagination
gem 'will_paginate', '~> 4.0.1'
# environmental variables
gem 'dotenv-rails', '~> 3.2.0'
gem 'nokogiri', '~> 1.19.3'
gem 'net-smtp', '~> 0.5.0'
# The Observer pattern provides a simple mechanism for one object to inform a set of interested third-party objects when its state changes.
gem 'observer', '~> 0.1.2'
# Data structure, similar to a Hash, that allows the definition of arbitrary attributes with their accompanying values
gem 'ostruct', '~> 0.6.3'
# A foreign function interface (FFI) is a mechanism by which a program written in one programming language can call routines or make use of services written or compiled in another one
gem 'ffi', '~> 1.17.4'
group :development, :test do
# Debug tool used with binding.irb. Explicit require avoids eager loading `debug/prelude`
# which interferes with the Docker boot process.
# [Ref] https://ruby.github.io/irb/#label-Debugging+with+IRB
# [Ref] https://github.com/ruby/debug#debug-command-on-the-debug-console
# [Ref] https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[ mri windows ], require: false
end
group :development do
gem 'brakeman', '~> 8.0.4', require: false
# RuboCop
gem 'rubocop', '~> 1.86.1', require: false
gem 'rubocop-performance', '~> 1.26.0', require: false
gem 'rubocop-rails', '~> 2.34.3', require: false
gem 'rubocop-rspec', '~> 3.9.0', require: false
end
group :test do
# 'factory_bot_rails' cames not to behave right in 5.0 or more
gem 'factory_bot_rails', '~> 6.5.1'
gem 'rspec-rails', '~> 8.0.4'
gem 'faker', '~> 3.8.0'
gem 'shoulda-matchers', '~> 7.0.1'
gem 'database_cleaner', '~> 2.1.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:windows, :jruby]