-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
33 lines (31 loc) · 962 Bytes
/
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.2'
# Required to avoid some bootstrap CSS weirdness
gem "autoprefixer-rails"
# Helps us send requests to the ECS API to trigger harvests
gem 'aws-sdk-ecs', '~> 1'
# Our HTTP client
gem 'faraday'
# Our icon set
gem "font-awesome-sass", "~> 5.6"
# Our template language
gem 'haml-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'js_cookie_rails'
gem 'local_time'
gem 'marc-dates', git: 'https://github.com/medusa-project/marc-dates.git'
gem 'omniauth'
gem "omniauth-rails_csrf_protection"
gem 'omniauth-saml'
gem 'pg'
gem 'puma'
gem 'rails', '~> 7.0'
gem 'sassc'
gem 'scars-bootstrap-theme', github: 'medusa-project/scars-bootstrap-theme',
branch: 'release/bootstrap-4.4'
#gem 'scars-bootstrap-theme', path: '../scars-bootstrap-theme'
gem 'sprockets-rails'
gem 'uglifier', '>= 1.3.0'
gem 'uiuc_lib_ad', git: 'https://github.com/UIUCLibrary/uiuc_lib_ad.git'