-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Gemfile
151 lines (122 loc) · 3.69 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
144
145
146
147
148
149
150
151
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(".ruby-version").strip
# Loads environment level configuration from `.env` when it exists.
# Also loads from `.env.development` when `RAILS_ENV=development`
# and from `.env.test` when the `RAILS_ENV=test`
#
gem "dotenv-rails", groups: %i[development test]
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.1"
# Data Transport
#
# Use Puma as the app server
gem "puma", "~> 6.4"
# Browser Layer
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "sprockets-rails"
# Turbo lets us swap chunks of HTML without page reloads: https://github.com/hotwired/turbo-rails
gem "stimulus-rails"
gem "turbo-rails"
# API Layer
#
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.13"
# View Layer
#
# Allows us to render .markdown.erb files
gem "redcarpet", "~> 3.6"
# Breadcrumbs!
gem "gretel", "~> 5.0"
# Better UI components
gem "lookbook", ">= 2.0.0.beta.4"
gem "view_component", "~> 3.20"
# QR Code Generation!
gem "rqrcode", "~> 2.2"
# Pagination!
gem "pagy", "~> 9.1"
# Database Layer
#
# Postgres extensions for ActiveRecord
# @see https://github.com/GeorgeKaraszi/ActiveRecordExtended
gem "active_record_extended", "~> 3.3"
# Postgres enums
gem "activerecord-postgres_enum", "~> 2.1"
# Support for models with "slots" or "positions"
gem "ranked-model", "~> 0.4.10"
gem "positioning"
# Slug-based model lookup
gem "friendly_id", "~> 5.5.1"
# Hashing / Encrypting data at rest
gem "bcrypt", "~> 3.1.20"
gem "lockbox", "2.0.0"
gem "rotp", "~> 6.3"
gem "strong_migrations", "~> 2.0"
# Soft Deletion
gem "discard", "~> 1.2"
# ActiveModel extension to remove extra whitespace from attributes
gem "strip_attributes", "~> 1.13"
# Use postgresql for data persistence
gem "pg", "~> 1.5"
# For image manipulation in Active Storage
gem "image_processing"
# Use S3 for file storage
gem "aws-sdk-s3", "~> 1.169", require: false
# Date/Time and Internationalization
#
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", "~> 1.2021", platforms: %i[mingw mswin x64_mingw jruby]
# Performance Optimization
#
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.18", require: false
# Permissions and policies
gem "pundit", "~> 2.4"
gem "decent_exposure", "~> 3.0"
# Utility support
gem "money-rails"
gem "stripe"
gem "square.rb"
# Workers and Background Jobs
gem "sidekiq"
# Error reporting in production
gem "sentry-rails"
gem "sentry-ruby"
gem "lograge"
# Demo data
gem "factory_bot_rails"
gem "faker"
# Code coverage
gem "simplecov", require: false, group: :test
group :development, :test do
gem "pry-byebug", platforms: %i[mri mingw x64_mingw]
# Our preferred testing library for Ruby and Rails projects
gem "rails-controller-testing"
gem "rspec-rails", "~> 7.0.1"
gem "shoulda-matchers", "~> 6.4"
gem "capybara"
gem "selenium-webdriver"
# Let the robots do the request/response faking.
gem "webmock"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "rubocop-capybara"
gem "rubocop-factory_bot"
gem "standard", "~> 1.41"
end
group :development do
gem "better_errors"
gem "binding_of_caller"
# Outputs i18n lookup key debug logs
gem "i18n-debug"
gem "listen", "~> 3.9"
gem "rails-erd"
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", "~> 4.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", github: "rails/spring-watcher-listen"
gem "bullet"
end