-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
143 lines (109 loc) · 3.29 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3'
# Use sqlite3 as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.1.2'
# Redis gem for cache
gem 'hiredis'
# Use Active Model has_secure_password
gem 'bcrypt', '~> 3.1.7'
# provides a full set of stores (Cache, Session, HTTP Cache) for Ruby on Rails
gem 'redis-rails'
# Adds a Redis::Namespace class which can be used to namespace Redis keys
gem 'redis-namespace'
# Use Active Storage variant
gem 'image_processing', '~> 1.2'
# 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 'jwt'
gem 'rack-cors'
# Addressable is an alternative implementation to the URI implementation
gem 'addressable'
# Active storage validation
gem 'activestorage-validator', '~> 0.1.3'
# Analyze image
gem 'mini_magick'
# Analyze user agent
gem 'useragent'
# Pagination
gem 'kaminari'
# Sidekiq
gem 'sidekiq'
# gem 'sidekiq-statistic'
# Track changes
gem 'paper_trail', '~> 11.1'
# Simple Rest Client
gem 'rest-client'
# Monitoring rails performance with RoR vs Wild
gem 'rorvswild'
# Gem for test and documentation API
gem 'rspec_api_documentation'
gem 'apitome', github: 'jejacks0n/apitome'
# Gem for export to csv
gem 'csv'
# Gem for markdown
gem 'redcarpet'
# Sitemap gem
gem 'sitemap_generator'
# Dalli for memcached
gem 'dalli'
# Levenshtein in C
gem 'levenshtein-ffi', require: 'levenshtein'
# Sendinblue email sdk
gem 'sib-api-v3-sdk'
# Generate PDF from html
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
# Generate QrCode
gem 'rqrcode', '~> 2.0'
# Google cloud storage
gem 'google-cloud-storage', '~> 1.11', require: false
# Aws sdk s3 for Cloudflare R2 object storage
gem 'aws-sdk-s3', '~> 1.142'
# A fast JSON parser and Object marshaller as a Ruby gem.
gem 'oj'
# Zip gen
gem 'rubyzip', '~> 2.3', '>= 2.3.2'
group :development, :test do
gem 'bullet'
# Ruby static code analyzer
gem 'rubocop'
gem 'rubocop-faker'
gem 'rubocop-performance'
gem 'rubocop-rails'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'faker'
# Small gem which causes rails console to open pry
gem 'pry-doc'
gem 'pry-rails'
gem 'rspec-rails', '~> 5.0.0'
end
group :development do
gem 'listen', '~> 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Open mail in browser rather than send real email
gem 'letter_opener'
# Capistrano
gem 'capistrano'
gem 'capistrano3-puma'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-sidekiq'
gem 'bundler-leak'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]