-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (69 loc) · 2.25 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
# We store our sessions in the database. (The Rails default is to store them
# in an encrypted cookie, but we've run into problems with the 4KB cookie size
# limit.)
gem "activerecord-session_store"
gem "aws-sdk-s3", "~> 1"
# Use ActiveModel has_secure_password for local-credential users
gem "bcrypt", "~> 3"
gem "bootstrap", "~> 5"
# Handles RabbitMQ messages.
gem "bunny"
gem "amq-protocol"
gem "amqp_helper", "~>0.2.0", git: "https://github.com/medusa-project/amqp_helper.git"
gem "csv"
# Required by delayed job
gem "daemons"
gem "dartsass-sprockets"
# Our ActiveJob queue
gem "delayed_job_active_record"
# All HTML templates are written in HAML
gem "haml-rails"
# Application HTTP client
gem "httpclient"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# Use jquery as the JavaScript library
gem "jquery-rails"
gem "js_cookie_rails"
# Used for converting an HTML deposit agreement to Markdown for storage in
# license.txt bitstreams
gem "kramdown"
# For pretty absolute and relative dates
gem "local_time"
# High-level access to the Medusa Collection Registry's REST API
#gem "medusa-client", path: "/Users/alexd/Projects/GitHub/medusa-project/medusa-client"
gem "medusa-client", git: "https://github.com/medusa-project/medusa-client.git"
# Helps sort bitstreams by filename
gem "natural_sort"
# Assists in parsing IP address CIDR ranges.
gem "netaddr"
# Enables local-credential logins.
gem "omniauth-identity", git: "https://github.com/medusa-project/omniauth-identity.git"
gem "omniauth-rails_csrf_protection"
gem "omniauth-saml"
# Our database
gem "pg"
# Our application server
gem "puma"
gem "rails", "~> 7.1"
gem "sprockets-rails"
gem "tzinfo-data"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 2.7"
gem 'uiuc_lib_ad', git: 'https://github.com/UIUCLibrary/uiuc_lib_ad.git'
group :development do
# Reduces boot times through caching; required in config/boot.rb
#gem "bootsnap", ">= 1.1.0", require: false
# Use Capistrano for deployment
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rbenv"
gem 'yard'
end
group :test do
gem "minitest-reporters"
end