-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
65 lines (59 loc) · 1.46 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.3"
gem "alma"
gem "archivesspace-client"
gem "base64", "0.1.1" # To make the application bundle correctly
gem "bootsnap", ">= 1.4.4", require: false
gem "cocoon"
gem "devise"
gem "honeybadger", "~> 5.0"
gem "jbuilder", "~> 2.7"
gem "marc"
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "net-ssh", "7.0.0.beta1"
gem "omniauth-cas"
gem "pg"
gem "psych", "< 4"
gem "puma", "~> 5.6"
gem "rails", "~> 7.1.2"
gem "rake"
gem "sass-rails", ">= 6"
gem "simple_form"
gem "turbolinks", "~> 5"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "vite_rails"
group :development, :test do
gem "bixby"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "pry-byebug"
gem "pry-rails"
gem "rspec-rails"
gem "solargraph"
gem "sqlite3"
end
group :development do
# Annotate schema on to models automatically.
gem "annotate"
gem "bcrypt_pbkdf"
gem "capistrano", "~> 3.10", require: false
gem "capistrano-passenger", require: false
gem "capistrano-rails", "~> 1.4", require: false
gem "capistrano-yarn", require: false
gem "ed25519"
gem "listen", "~> 3.3"
gem "rack-mini-profiler", "~> 2.0"
gem "spring"
gem "web-console", ">= 4.1.0"
end
group :test do
gem "capybara", "~> 3.37"
gem "selenium-webdriver"
gem "simplecov", require: false
gem "timecop"
gem "webmock"
end