forked from zinc-collective/convene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
117 lines (95 loc) · 2.99 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
# 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.0'
# Data Transport
#
# Use Puma as the app server
gem 'puma', '~> 5.6'
# 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.11'
gem 'rswag-api'
gem 'rswag-ui'
# View Layer
#
# Allows us to render .markdown.erb files
gem 'redcarpet', '~> 3.5'
# Breadcrumbs!
gem 'gretel', '~> 4.4'
# Database Layer
#
# Postgres extensions for ActiveRecord
# @see https://github.com/GeorgeKaraszi/ActiveRecordExtended
gem 'active_record_extended', '~> 3.0'
# Postgres enums
gem 'activerecord-postgres_enum', '~> 2.0'
# Support for models with "slots" or "positions"
gem 'ranked-model', '~> 0.4.8'
# Slug-based model lookup
gem 'friendly_id', '~> 5.4.2'
# Hashing / Encrypting data at rest
gem 'bcrypt', '~> 3.1.18'
gem 'lockbox', '1.0.0'
gem 'rotp', '~> 6.2'
# Use postgresql for data persistence
gem 'pg', '~> 1.4'
# Use S3 for file storage
gem 'aws-sdk-s3', '~> 1.114', 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.13', require: false
# Permissions and policies
gem 'pundit', '~> 2.2'
# Utility hookup support
gem 'plaid', '~> 16.0'
gem 'money-rails'
# Workers and Background Jobs
gem 'sidekiq'
# Error reporting in production
gem 'sentry-rails'
gem 'sentry-ruby'
# 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', '~> 6.0.0.rc1'
gem 'rswag-specs'
gem 'shoulda-matchers', '~> 5.2'
# Let the robots do the request/response faking.
gem 'vcr'
gem 'webmock'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '~> 3.7'
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'
end