-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
184 lines (144 loc) · 4.03 KB
/
Gemfile
File metadata and controls
184 lines (144 loc) · 4.03 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.4"
# Use Puma as the app server
gem "puma", "~> 5.6"
# Best database int the world
gem "pg"
# Use SCSS for stylesheets
gem "sass-rails", ">= 6"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker", "~> 5.4"
# Turbo and hotwire
gem "turbo-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.11"
# Auhentication
gem "devise"
# Admin
gem "activeadmin"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 5.0"
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# HTML sanitizer
gem "sanitize"
# TODO https://stackoverflow.com/questions/72242024/synchronysing-dependencies-between-system-and-application
gem "strscan", "3.0.6"
gem "httparty"
gem "capistrano-db-tasks", require: false
# s3 adapter
gem "aws-sdk-s3", require: false
# Use Active Storage variant
gem "image_processing", "~> 1.12"
# Error tracking
gem "honeybadger", "~> 5.2"
# Annotations
gem "annotate"
# First party analytics
gem "ahoy_matey"
# Business intelligence
gem "blazer"
# deployment
gem "capistrano-sidekiq", group: :development
# meta tags
gem "meta-tags"
# Sitemap
gem "sitemap_generator"
# Github API access
gem "octokit"
# search
gem "ransack"
gem "pg_search"
# friendly urls
gem "friendly_id", "~> 5.4.2"
# markdown
gem 'redcarpet', '~> 3.6' # A fast, safe and extensible Markdown to (X)HTML parser
# pagination
gem "kaminari"
# File downloads
gem "down", "~> 5.4"
# Charts
gem "chartkick"
# Background jobs
gem "sidekiq"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# forms
gem "simple_form"
# json
gem "oj"
# Fast partials
gem "view_component"
# Remove when upgraded to Rails 7
#https://stackoverflow.com/questions/70500220/rails-7-ruby-3-1-loaderror-cannot-load-such-file-net-smtp
gem 'net-smtp', require: false
gem 'net-imap', require: false
gem 'net-pop', require: false
group :development, :test do
# Rspec
gem "rspec-rails"
# debugging
gem "debug", ">= 1.0.0"
# linitng
gem "rubocop", "~> 1.42.0", require: false
gem "rubocop-rails"
# Factories
gem "factory_bot_rails"
# Environment variables
gem "dotenv-rails"
# Mail
gem "mailcatcher"
# beautify html code
gem "htmlbeautifier"
# Faking stuff
gem "faker", git: "https://github.com/faker-ruby/faker.git", branch: "master"
gem "rack-mini-profiler"
# For memory profiling
gem "memory_profiler"
# For call-stack profiling flamegraphs
gem "flamegraph"
gem "stackprof"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 3.3.0"
gem "listen", ">= 3.0.5", "< 3.8"
# 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.1.0"
# static security analysis
gem "brakeman"
# better errors
gem "better_errors"
gem "binding_of_caller"
# letter oepner
gem "letter_opener"
# Shooting N+1 queries
gem "bullet"
# deploy
gem "capistrano", "~> 3.17"
gem "capistrano-rails", "~> 1.6"
gem "capistrano-passenger", "~> 0.2.1"
gem "capistrano-rbenv", "~> 2.1", ">= 2.1.4"
gem "capistrano-rails-console", require: false
end
group :test do
# Clean database for tests
gem "database_cleaner-active_record"
# One liner tests http://matchers.shoulda.io/
gem "shoulda-matchers"
# Time travel in tests
gem "timecop"
# Adds support for Capybara system testing and selenium driver
gem "capybara", ">= 2.15"
gem "webdrivers"
gem "cuprite"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Linting
gem "standard", group: [:development, :test]
gem "ruby-lsp", "~> 0.0.4", :group => :development