-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
103 lines (96 loc) · 2.84 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
# frozen_string_literal: true
source "https://rubygems.org"
gem "rails", "7.1.5.1"
gem "actionpack-action_caching", "~> 1.2"
gem "actionpack-page_caching", "~> 1.2"
gem "alma", git: "https://github.com/tulibraries/alma_rb.git", branch: "main"
gem "autoprefixer-rails"
gem "awesome_print"
gem "bento_search", git: "https://github.com/tulibraries/bento_search.git", branch: "temple-libraries-rails7-upgrade"
gem "blacklight", "~> 7.39"
gem "blacklight-marc"
gem "blacklight-ris", git: "https://github.com/tulibraries/blacklight-ris.git", branch: "update-for-rails-7-blacklight-7"
gem "blacklight_advanced_search", git: "https://github.com/projectblacklight/blacklight_advanced_search.git", ref: "v7.0.0"
gem "blacklight_range_limit", git: "https://github.com/tulibraries/blacklight_range_limit.git", branch: "bl-1431-bl-1358"
gem "bootstrap", ">= 5.3.3"
gem "bootsnap", "1.18.4"
gem "browser"
gem "byebug", platform: :mri
gem "cdm", git: "https://github.com/tulibraries/cdm_rb.git", branch: "master"
gem "cob_az_index", git: "https://github.com/tulibraries/cob_az_index.git",
branch: "main"
gem "cob_index",
git: "https://github.com/tulibraries/cob_index.git",
branch: "main"
gem "cob_web_index", git: "https://github.com/tulibraries/cob_web_index.git",
branch: "main"
gem "coffee-rails"
gem "devise"
gem "devise-guests", "~> 0.8"
gem "dotenv-rails"
gem "execjs"
gem "faraday", "2.12.2"
gem "ffi", "1.16.3"
gem "hashie", "~>4.1.0"
gem "honeybadger", "5.26.1"
gem "httparty"
gem "jbuilder", "~> 2.13"
gem "jquery-rails"
gem "jwt"
gem "lc_solr_sortable", git: "https://github.com/tulibraries/lc_solr_sortable", branch: "main"
gem "net-smtp"
gem "nokogiri", "1.17.2"
gem "okcomputer"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-saml"
gem "omniauth-shibboleth"
gem "popper_js", ">= 2.11.8"
gem "primo", git: "https://github.com/tulibraries/primo", branch: "main"
gem "puma", "6.5.0"
gem "rsolr", "~> 2.6"
gem "ruby-saml", "1.17.0"
gem "sass-rails"
gem "skylight"
gem "sprockets-rails"
gem "turbolinks", "~> 5"
gem "turbo-rails"
gem "twitter-typeahead-rails", "0.11.1"
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "uglifier", ">= 1.3.0"
gem "webpacker", "6.0.0.rc.6"
group :development do
gem "axe-core-rspec"
gem "flamegraph"
gem "foreman"
gem "launchy"
gem "rack-mini-profiler", require: false
gem "ruby-prof"
gem "stackprof"
gem "web-console"
end
group :development, :test do
gem "pry-rails"
gem "rubocop"
gem "rubocop-rails"
end
group :test do
gem "capybara", "~> 3"
gem "database_cleaner"
gem "factory_bot_rails"
gem "rails-controller-testing"
gem "rspec-rails"
gem "selenium-webdriver"
gem "simplecov"
gem "simplecov-lcov"
gem "spring"
gem "sqlite3", "~> 1.7.3"
gem "vcr"
gem "webmock"
end
group :production do
gem "pg"
# required for using memcached
gem "dalli"
gem "connection_pool"
end