-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathGemfile
120 lines (110 loc) · 3.75 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.0.2'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# Choose between PostgreSQL and MySQL (comment out one of the following gems)
gem 'pg'
# gem 'mysql2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.4'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Turbolinks makes navigating your web application faster. Read more:
# https://github.com/turbolinks/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1', '>= 3.1.11'
gem 'bootstrap-sass'
# List of countries and their respective states and cities
gem 'city-state'
# Authentication
gem 'devise'
# Generate fake user names, e-mails, adresses, IPs, lorem text, etc. Include
# in all environments as we might use it to seed the DB in test deploys.
gem 'faker'
# Use slugs instead of IDs in URLs. Makes prettier URLs, improves SEO and avoids
# leaking DB IDs (for security reasons).
gem 'friendly_id'
# jQuery is no longer installed by default on Rails 5.1
gem 'jquery-rails'
# Pagination
gem 'kaminari'
# Authorization
gem 'pundit'
# Contact form
gem 'mail_form'
# HTTP caching
gem 'rack-cache'
# Locale data for Rails. Rails already comes with i18n capabilities (e.g.,
# translate model attributes, possibility to place all of the app's strings in
# YML dictionaries). Only use this gem if you need to translate Rails to one or
# more non-english languages.
# gem 'rails-i18n', '~> 5.0.0'
# Searching, filtering and sorting
gem 'ransack'
# Advanced select boxes https://select2.github.io/
gem 'select2-rails'
# Get e-mail notifications when exceptions happen in the production environment
gem 'exception_notification'
group :test do
gem 'database_cleaner'
end
group :development, :test do
# Detects N+1 queries and unused eager loading
gem 'bullet'
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'capybara'
gem 'capybara-email'
gem 'capybara-screenshot'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'spring-commands-rspec'
# code coverage analysis tool
gem 'simplecov', require: false
end
group :development do
gem 'awesome_print'
gem 'better_errors'
# Necessary to use Better Errors' advanced features (REPL, local/instance
# variable inspection, pretty stack frame names).
gem 'binding_of_caller'
# A static analysis security vulnerability scanner for Ruby on Rails apps
gem 'brakeman', require: false
# Checks for vulnerable versions of gems
gem 'bundler-audit'
# Required by rack-mini-profiler' for call-stack profiling flamegraphs
gem 'flamegraph'
# Open "sent" e-mails in your browser instead of actually sending them
gem 'letter_opener'
gem 'listen', '~> 3.1', '>= 3.1.5'
gem 'pry-doc'
gem 'pry-rails'
gem 'spring'
gem 'spring-watcher-listen'
# Database, call-stack and memory profiling
gem 'rack-mini-profiler'
# Required by rack-mini-profiler for memory profiling
gem 'memory_profiler'
gem 'rubocop'
# Required by rack-mini-profiler for call-stack profiling for Ruby MRI 2.1+
gem 'stackprof'
# Access an IRB console on exception pages or by using <%= console %> anywhere
# in the code.
gem 'web-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]