-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
executable file
·89 lines (71 loc) · 2.44 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
source 'https://rubygems.org'
ruby '3.1.2'
gem 'archivesspace-api-utility', git: 'https://github.com/NCSU-Libraries/archivesspace-api-utility.git'
# NC State only
gem 'devise_wolftech_authenticatable',
git: "[email protected]:NCSU-Libraries/devise_wolftech_authenticatable.git"
gem 'ncsul_web', git: '[email protected]:ncsu-libraries/ncsul_web-rails.git'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.1.2'
gem 'sprockets-rails'
# sprockets/es6 required for foundation but not included in dependencies - may be added as a depnency in a future version
gem 'sprockets-es6'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use SCSS for stylesheets
# gem 'sass-rails'
gem 'sass-rails', '~> 6.0'
gem 'foundation-rails'
# gem 'font-awesome-sass'
gem 'font-awesome-sass'
gem 'foundation-will_paginate'
gem 'will_paginate'
# # Use Terser as compressor for JavaScript assets
gem 'terser'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# gem 'compass-rails'
gem 'modernizr-rails'
gem 'rsolr'
# security vulnerabilities fix - https://github.com/NCSU-Libraries/collection_guides/security/dependabot/Gemfile.lock/nokogiri/open
gem 'truncate_html'
gem 'chronic'
gem 'whenever', :require => false
gem 'redis', '~> 4.0'
gem 'resque', '~> 2.6.0'
gem 'resque-web', require: 'resque_web'
gem 'resque-scheduler'
gem 'sinatra', '>= 3.0.4'
gem 'net-ldap'
gem "net-http"
gem 'net-smtp', require: false
gem 'net-imap', require: false
gem 'net-pop', require: false
# Exception Notifications
gem 'exception_notification'
gem 'exception_notification-rake'
# https://nvd.nist.gov/vuln/detail/CVE-2019-16109
gem 'devise'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
end
group :development, :test do
# Use Puma as the app server
gem "puma", '~> 5.6.8'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '>= 3.0.0'
# gem 'spring-watcher-listen', '~> 2.0.0'
# gem 'quiet_assets'
gem 'annotate'
# For testing
gem 'rspec-rails'
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'pry'
end