-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
56 lines (51 loc) · 2.49 KB
/
Gemfile
File metadata and controls
56 lines (51 loc) · 2.49 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.2'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 5.5'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.2.5'
# Simple, efficient background processing for Ruby.
gem 'sidekiq', '~> 6.2.1'
# Enables to set jobs to be run in specified time (using CRON notation)
gem 'sidekiq-cron', '~> 1.2.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', '~> 1.1.0'
# Autoload dotenv in Rails.
gem 'dotenv-rails', '~> 2.7.5'
# The bcrypt Ruby gem provides a simple wrapper for safely handling passwords.
gem 'bcrypt', '~> 3.1.13'
# A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.
gem 'jwt', '~> 2.2.1'
# Takes some boilerplate out of Ruby with methods like attr_initialize.
gem 'attr_extras', '~> 6.2.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# rspec-rails is a testing framework for Rails 3+.
gem 'rspec-rails', '~> 4.0.1'
# Shoulda Matchers provides RSpec- and Minitest-compatible one-liners to test common Rails functionality that, if written by hand, would be much longer, more complex, and error-prone.
gem 'shoulda-matchers', '~> 4.5.1'
# Ffaker generates dummy data.
gem 'ffaker', '~> 2.17.0'
# factory_bot_rails provides integration between factory_bot and rails 4.2 or newer
gem 'factory_bot_rails', '~> 6.1.0'
end
group :development do
# The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!
gem 'listen', '>= 3.0.5', '<= 3.4.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
#Makes spring watch files using the listen gem.
gem 'spring-watcher-listen', '~> 2.0.0'
# RubyCritic is a tool that wraps around various static analysis gems to provide a quality report of your Ruby code.
gem 'rubycritic', '~> 4.6.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]