-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
36 lines (32 loc) · 1.07 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Mongoid 9.0 that supports FLE is not yet released.
# Use the master branch of the Mongoid repository.
gem 'mongoid', github: 'mongodb/mongoid', branch: 'master'
# FFI is required for the libmongocrypt gem.
gem 'ffi'
# libmongocrypt is required for field level encryption.
# You can also download and install libmongocrypt manually
# following the instructions here:
# https://www.mongodb.com/docs/manual/core/csfle/reference/libmongocrypt/
gem 'libmongocrypt-helper'
# Devise is used to demonstrate how to use field level encryption
# in a multi-tenant application.
gem "devise", "~> 4.9"
# Standard Rails gems
gem "rails", "~> 7.0.6"
gem "sprockets-rails"
gem "puma", "~> 5.0"
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "bootsnap", require: false
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'byebug'
end
group :development do
gem "web-console"
end