-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
112 lines (97 loc) · 3.15 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "aasm"
gem "amazing_print"
gem "aws-sdk-s3"
gem "datacite-mapping"
gem "dogstatsd-ruby"
gem "health-monitor-rails", "12.4.0"
gem "honeybadger"
gem "io-wait", "0.2.1"
gem "net-ftp"
gem "net-imap"
gem "net-pop"
gem "net-ssh", "7.0.0.beta1"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem "rails"
# Use sqlite3 as the database for Active Record
gem "pg"
# Use Puma as the app server
gem "puma", "~> 5.6"
# Use SCSS for stylesheets
gem "sass-rails"
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem "turbolinks", "~> 5"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem "nokogiri", ">= 1.13.4"
gem "retryable"
gem "rolify"
gem "rspec-rails"
gem "sidekiq", "~> 7.2"
gem "vite_rails"
gem "whenever"
# Reference: https://github.com/pulibrary/pul-the-hard-way/blob/main/services/cas.md
gem "devise", "~> 4.9"
gem "omniauth", "~> 2.1", ">= 2.1.2"
gem "omniauth-cas", "~> 3.0"
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
# EZID client from Duke since it has been upgraded to support Ruby 3.
gem "ezid-client", git: "https://github.com/duke-libraries/ezid-client.git", ref: "dfcf7f49995560ed48df407560c4fe3fb6dbfa7b"
gem "friendly_id", "~> 5.4.0"
gem "faraday"
gem "datacite", github: "sul-dlss/datacite-ruby", branch: "main"
gem "kramdown"
gem "net-smtp"
gem "rinku"
group :development, :test do
gem "bcrypt_pbkdf"
gem "bixby"
gem "byebug"
gem "coveralls_reborn", "~> 0.28"
gem "ed25519"
gem "equivalent-xml", "~> 0.6.0"
gem "pry-byebug"
gem "pry-rails"
gem "simplecov", "~> 0.22"
gem "yard"
end
group :development do
gem "capistrano", "~> 3.10", require: false
gem "capistrano-passenger", require: false
gem "capistrano-rails", "~> 1.4", require: false
gem "foreman"
gem "mailcatcher"
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", ">= 4.1.0"
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem "listen", "~> 3.3"
gem "rack-mini-profiler", "~> 2.0"
end
group :test do
gem "axe-core-rspec"
gem "capybara"
gem "database_cleaner-active_record"
gem "factory_bot_rails", require: false
gem "ffaker"
gem "rails-controller-testing"
gem "rspec-html-matchers"
gem "rspec-retry"
gem "selenium-webdriver"
gem "sinatra"
gem "webmock"
end
group :staging, :production do
gem "ddtrace", require: "ddtrace/auto_instrument"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]